Powershell - 移动文件夹
cmdlet
Move-Item cmdlet 用于通过传递要移动的目录的路径和要移动的文件夹的目标路径来移动目录。
示例 1
在此示例中,我们将文件夹 D:\Temp\Test 移动到 D:\Temp\Test1
在 PowerShell ISE 控制台中键入以下命令
Move-Item D:\temp\Test D:\temp\Test1
您可以在 Windows 资源管理器中看到 Test 目录已移至 Test1 目录。
示例 2
在此示例中,在 D:\Temp\ 的 Test 文件夹中创建文件 test.txt,然后运行相同的命令。
在 PowerShell ISE 控制台中键入以下命令
Move-Item D:\temp\Test D:\temp\Test1
您可以在 Windows 资源管理器中看到 Test1 目录的内容,其中包含 Test 目录和测试文件。
❮ powershell_files_folders.html