📌  相关文章
📜  Python 移动所有带有扩展名的文件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:00.100000             🧑  作者: Mango

代码示例1
import os
import shutil
sourcepath='C:/Users/kevinconnell/Desktop/Test_Folder/'
sourcefiles = os.listdir(sourcepath)
destinationpath = 'C:/Users/kevinconnell/Desktop/Test_Folder/Archive'
for file in sourcefiles:
    if file.endswith('.png'):
        shutil.move(os.path.join(sourcepath,file), os.path.join(destinationpath,file))