如何使用PowerShell将文件或文件夹从源移动到目标?
在下面的代码中,我想将文件从$destination
移到$newDestinationPath
foreach($file in $fileList)
{
$newDestinationPath = $destination + "\" + $newDestination
New-Item $newDestinationPath -type directory
// here I want to move file from $destination to $newDestinationPath
}
我是PowerShell的新手。请帮忙!
答案 0 :(得分:2)
使用move-item
cmdlet,例如Move-Item -Path C:\test.txt -Destination E:\Temp\tst.txt