change DOES.PROD.PROCLIB to DOESTAX.PROD.PROCS.BATCH.LIB
This commit is contained in:
14
Compile.ps1
14
Compile.ps1
@ -33,7 +33,7 @@ Write-Host 'Compile CHGBD100'
|
||||
& "$env:rcbin\cobrc" HELLO.cob WARNING.cob :DBDriver=SQLITE :DBConnectString=repository.db3
|
||||
|
||||
# @-Files
|
||||
& "$env:rcbin\cobrc" "@CobOptions.txt" "@CobSource.txt"
|
||||
& "$env:rcbin\cobrc" "@CompileOptions.txt" "@BatchFileList.txt"
|
||||
|
||||
# Env Variables do not Expand in @-Files
|
||||
$env:temp
|
||||
@ -50,3 +50,15 @@ $env:temp
|
||||
& "$env:rcbin\cobrc" "TRACE.cob"
|
||||
& "$env:rcbin\rclrun" "TRACE"
|
||||
& "$env:rcbin\rclrun" "TRACE" -LogLevel="TRACE"
|
||||
|
||||
|
||||
# Define the path to the directory you want to scan
|
||||
$FolderPath = "E:\Innova\Code\MP\Git\DUTAS_DEVL\DUTAS\Batch"
|
||||
|
||||
# Define the path for the output text file
|
||||
$OutputPath = "E:\Innova\Code\MP\Git\DUTAS_DEVL\DUTAS\BatchFileList.txt"
|
||||
|
||||
# Get all files recursively within the specified folder and its subfolders
|
||||
# Select the FullName property (which includes the full path and filename)
|
||||
# Export the results to the specified text file, one item per line
|
||||
Get-ChildItem -Path $FolderPath -File -Recurse | Select-Object -ExpandProperty FullName | Out-File -FilePath $OutputPath
|
||||
Reference in New Issue
Block a user