我是Powershell的新手,試圖獲得一個簡單的腳本來運行。PowerShell:如何從源目錄中只複製選定的文件?
我有一個我想從src_dir複製到dst_dir的文件列表。我寫了一個簡單的腳本(這顯然是錯誤的,因爲它在執行時沒有做任何事情)。
有人可以幫忙檢查看看我做錯了什麼嗎?
# source and destionation directory
$src_dir = "C:\Users\Pac\Desktop\C4new"
$dst_dir = "C:\Users\Pac\Desktop\csci578-hw3\Prism\C4new"
# list of files from source directory that I want to copy to destination folder
# unconditionally
$file_list = "C4newArchitecture.java", "CustomerData.java"
# Copy each file unconditionally (regardless of whether or not the file is there
for($i=0; $i -le $file_list.Length - 1; $i++)
{
Copy-Item -path $src_dir+$file_list[$i] -dest $dst_dir -force
}
wow..that看起來很酷。感謝分享信息! – sivabudh 2009-11-06 05:09:50