-2
如何使用PowerShell將文件或文件夾從源移動到目標?如何使用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中新。請幫忙!
獲取幫助布展項目 –
@ZachAlexander我寫劇本,整合與TFS生成。所以我沒有任何工具。請告訴我在哪裏可以執行此命令? –
'Get-Help'和'Move-Item'構建在cmdlet中,就像'New-Item'一樣。 – BenH