Files
2023-07-10 11:29:35 +02:00

7 lines
256 B
PowerShell

set-location "C:\dev\SSMS projects\OCTPDBA-662 - Export LORE in CSV format for AI"
Get-ChildItem .\out -Filter *.csv | ForEach-Object {
$n = $_.FullName.replace(".csv", "")+".done"
#write-output $null >> "$($n).done"
Write-Output $null >> $n
}