“笨办法学python”学习笔记-在终端powershell中对目录进行简单的编辑(一)

1.new-item -path c:/ -name 新建文件夹或文件的名字 -type directory
意思是在C盘新建一个文件夹
“笨办法学python”学习笔记-在终端powershell中对目录进行简单的编辑(一)_第1张图片
new-item: 新建项目
-path:指定路径
-name:文件或文件夹的名字
-type directory:类型目录,也就是文件夹,在这里需要新建什么类型的文件就在这里更改类型
如果不加上-type directory,即
new-item -path c:/ -name 新建文件夹或文件的名字
则会出现“笨办法学python”学习笔记-在终端powershell中对目录进行简单的编辑(一)_第2张图片
2.Remove-item -path C:/文件夹或文件的名字
Remove-item:删除项目
-path:指定路径

你可能感兴趣的:(《笨方法学Python》笔记)