1、删除目录
import os
os.remove(path);
2、删除文件夹
import os
os.rmdir(path);
3、判断目录是否存在
import os
os.path.isdir(path)
# 存在返回True
4、判断文件夹是否存在
import os
os.path.isfile(path)
# 存在返回True
5、获取所有目录中所有文件的名称
import os
os.listdir(path)
# 存在返回返回名称的集合
6、复制拷贝文件
import shutil
shutil.copyfile("oldfile","newfile") # oldfile和newfile都只能是文件
shutil.copy("oldfile","newfile") # oldfile只能是文件夹,newfile可以是文件,也可以是目标目录
7、复制拷贝目录
import shutil
shutil.copytree("olddir","newdir") # olddir和newdir都只能是目录,且newdir必须不存在
8、重命名文件夹
import os
os.rename("oldname","newname") # 文件或目录都是使用这条命令
9、创建单个目录
import os
os.mkdir(“test”
10、创建多级目录
import os
os.makedirs(r“c:\python\test”)