我想從一堆文本文件中刪除內容。Powershell - 刪除分隔符後的所有內容 - 在文件夾中的文本文件中找到
在每個文本文件 - 刪除一切後,******
$Path = "C:\Users\Desktop\Delete\*.txt" # Folder Containing Text files
$OutPath = "C:\Users\Desktop\Files\"
Get-Content c.txt | Where { $_ -notmatch "*****" } | Set-Content $OutPath
我已經看到了這powershell delete everything after character for every line in a file
我無法得到它的工作
我是新手與電源殼請原諒我的代碼。
謝謝
我不敢相信 - 兩行代碼可以節省我幾個小時的手動工作。這非常棒。 – wp44
先生們感謝您的幫助 – wp44