【Python】移动、复制文件到另一个文件夹、删除文件(夹)

引入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')
    原文作者:Asher117
    原文地址: https://blog.csdn.net/Asher117/article/details/109083247
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞