2017-07-11 71 views
-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中新。請幫忙!

+2

獲取幫助布展項目 –

+0

@ZachAlexander我寫劇本,整合與TFS生成。所以我沒有任何工具。請告訴我在哪裏可以執行此命令? –

+1

'Get-Help'和'Move-Item'構建在cmdlet中,就像'New-Item'一樣。 – BenH

回答

2

使用move-item小命令,例如Move-Item -Path C:\test.txt -Destination E:\Temp\tst.txt

+0

這是行得通的!謝謝。 –

相關問題