我目前正在尝试在程序运行时自动将PowerPoint复制到另一个文件中的程序,但是由于无法处理pptx文件,因此我不能使用shutil,
答案 0 :(得分:0)
只复制文件吗?
import os
os.popen('copy .\\file1.txt .\\test\\file1.txt')
如果您尝试将目录中的所有.pptx文件移动到备份中,则类似的方法可能适用于更轻松的方法:
import os
from os import listdir
from os.path import isfile, join
path = "./"
included_extensions = ['pptx','PPTX']
allFiles = [f for f in listdir(path) if any(f.endswith(ext) for ext in included_extensions)]
length = len(allFiles)
for i in range(length):
os.popen('copy .\\'+allFiles[i]+' .\\backup\\'+allFiles[i])