我想寫下一個腳本,可以幫助我存檔多個子分區中的多個文件。另外我需要排除特定的文件。 到目前爲止,我得到了幾行腳本PowerShell腳本歸檔許多子文件夾中的文件
$files = Get-ChildItem -Recurse -path "D:\path\to\folder" -Exclude *i.jpeg |
Where-Object { $_.FullName -notmatch '\\excludedir($|\\)' }
foreach ($file in $files)
{
C:\Program Files\7-zip\7z.exe" a -t7z -mx=9 -ms=on $file
}
基本上它的遞歸搜索所有子文件夾的.JPEG文,給我其中不包括結尾的那些「i'.jpeg讓我們說」名單photoi.jpeg 」。 這是工作,但我無法進入下一步,因爲我需要爲所有列出的文件運行7zip。
有人可以幫我在這裏。 感謝提前:)