powershell


新建文件

当前目录新建文件
new-item FILENAME.xxx -type file
当前目录新建文件夹
new-item DIRECTORYNAME -type directory
在指定目录新建
new-item TARGETDIR FILENAME.xxx -type file


重命名文件

这个重命名命令把 C:/Scripts/Test.txt 重命名为 C:/Scripts/New_Name.txt:
Rename-Item c:/scripts/Test.txt new_name.txt


移动文件
Move-Item c:\scripts\test.zip c:\testX

使用正则

Move-Item c:\scripts\*.zip c:\test

Powershell 输出中文乱码解决方法

打开控制面板 -> Change date,time,or number -> 打开 “Region” 对话框
选择 Administrative 选项卡,点击 change system locale
选择 Chinese(Simplified,China)确认后,重启电脑,即可。


你可能感兴趣的:(powershell)