分析使用python的open函数时报nosuchfileordir的错误原因

我写的代码如下:

def createfilewithfilename(localpathparam,filename):
totalpath=local_url+’\\’+filename
if not os.path.exists(totalpath):
print totalpath
file=open(totalpath,’w+’)
file.close()
return totalpath

起初时local_url使用的是绝对路径:f:程序名/imgs

但是了程序一直报no such file or dir的错,后来发现只要换为相对路径即可,

../imgs,程序运行成功

以上就是分析使用python的open函数时报no such file or dir的错误原因的详细内容,更多请关注 第一php社区 其它相关文章!

Posted in 未分类

发表评论