这是我的代码
import os
import shutil
x_file = open(os.path.join('C:\\Users\\_\\Pictures\\Saved Pictures\\Part 7 Sketches', "output.txt"), "r")
for image in x_file:
v=str.strip(image)
shutil.move('C:\\Users\\_\\Pictures\\Saved Pictures\\Part 7 Sketches\\'+v, 'C:\\Users\\_\\Pictures\\New')
我想使用列表文件(输出文本)搜索目录并将所选图片移动到新目录。当我这样做时,我得到一个错误的前面说
with open(src, 'rb') as fsrc:
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\_\\Pictures\\Saved Pictures\\Part 7 Sketches\\001'
但该文件存在...感谢任何帮助