如何使用PowerShell将文件或文件夹从源移动到目标

时间:2017-07-11 13:36:15

标签: 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的新手。请帮忙!

1 个答案:

答案 0 :(得分:2)

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