概述
importospath='C:\Users\Administrator\Desktop\test'fdname='2'photo='1.jpg'ifnotos.path.exists(path+fdname):os.makedirs(r'%s/%s'%(os.getcwd(),fdname))shutil.move(photo,...
import os
path='C:\Users\Administrator\Desktop\test'
fdname='2'
photo='1.jpg'
if not os.path.exists(path+fdname):
os.makedirs(r'%s/%s'%(os.getcwd(),fdname))
shutil.move(photo, fdname)
else:
shutil.move(photo, fdname)
不是写else,为什么不能在文件夹2存在时直接将文件移动如文件夹2?
附错误信息:
Traceback (most recent call last):
File "C:UsersAdministratorDesktoptest照片整理.py", line 22, in
os.makedirs(r'%s/%s'%(os.getcwd(),fdname))
File "C:Python34libos.py", line 237, in makedirs
mkdir(name, mode)
FileExistsError: [Win
最后
以上就是怕黑皮带为你收集整理的python3创建文件失败_Python代码报错 FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。...的全部内容,希望文章能够帮你解决python3创建文件失败_Python代码报错 FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。...所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复