powershell 常用命令

学向勤中得,萤窗万卷书。这篇文章主要讲述powershell 常用命令相关的知识,希望能为你提供帮助。

废话不说,直接上实例:
1.copy file or dirPS C:\\Users\\robin> Copy-Item -Path .\\PowerShell-Best-Pactise\\ -Destination C:\\Users\\robin\\Desktop\\
2.delete filesPS C:\\Users\\robin> remove-item .\\PowerShell-Best-Pactise*
3.delete dirPS C:\\Users\\robin> remove-item .\\PowerShell-Best-Pactise\\
4.create new filePS C:\\Users\\robin> new-item PowerShell-Best-Pactise
目录: C:\\Users\\robin
Mode LastWriteTime Length Name



-a---- 2021/9/27 22:56 0 PowerShell-Best-Pactise
5.create dir:PS C:\\Users\\robin> new-item -path ./ -name logfiles -type directory

目录: C:\\Users\\robin


Mode LastWriteTime Length Name



d----- 2021/9/27 23:01 logfiles

【powershell 常用命令】

    推荐阅读