引入shutil模块
import shutil
复制或移动到目的文件夹下面
shutil.copy('demo.txt','新的文件夹')
file1.txt 移动到 新的文件夹 下面
shutil.move('file1.txt','新的文件夹')
复制或移动到目的文件夹下面之后,重命名
shutil.copy('demo.txt','新的文件夹/new1.txt')
shutil.move('file2.txt','新的文件夹/new2.txt')
导入os模块
import os
删除 file1.txt
os.remove('file1.txt')
删除 文件夹1 下面的 file1.txt
os.remove('文件夹1/file1.txt')
删除 文件夹1
shutil.rmtree('文件夹1')