powershell move
时间: 2023-09-19 19:07:32 浏览: 134
Power shell
PowerShell 中的 `Move-Item` 命令可用于移动文件或文件夹。以下是其基本语法:
```
Move-Item [-Path] <String[]> [[-Destination] <String>] [-Force] [-WhatIf] [-Confirm] [-PassThru] [-Credential <PSCredential>] [-Exclude <String[]>] [-Filter <String>] [-Include <String[]>] [-Recurse] [-ToSession <PSSession[]>] [-UseTransaction] [<CommonParameters>]
```
例如,要将 `C:\Users\john\Documents\file.txt` 移动到 `C:\Users\john\Desktop\file.txt`,可以执行以下命令:
```
Move-Item -Path "C:\Users\john\Documents\file.txt" -Destination "C:\Users\john\Desktop\file.txt"
```
请注意,如果目标文件夹中已经存在同名文件,则会覆盖它。如果要防止覆盖,请使用 `-Force` 参数。
阅读全文