我是靠谱客的博主 怕黑皮带,最近开发中收集的这篇文章主要介绍python3创建文件失败_Python代码报错 FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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] 当文件已存在时,无法创建该文件。...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部