我正在尝试使用shutil.move将PDF文件从一个文件夹移动到另一个文件夹。执行脚本后,python不再看到它们,而它们在Windows资源管理器中仍然可见。如果我再次运行脚本,python告诉我没有文件。我必须运行反向脚本才能让python看到它们。我在Windows 10上使用64位Python v3.6.4。 Command prompt with counts
import os, sys
import shutil
from os.path import join
Filez=0
PDFZ=0
filovi = os.listdir("C:/Users/Mirko1/pdfannots-master/NoGo")
for file in filovi:
Filez +=1
if file.endswith(".pdf"):
newdr=join('C:\\', 'Users','Mirko1','pdfannots-master','NoGo', file)
olddr=join('C:\\', 'Users','Mirko1','pdfannots-master', file)
PDFZ +=1
shutil.move(newdr, olddr)
print(Filez)
print(PDFZ)