分析使用python的open函数时报NoSuchFileorDIr的错误原因
来源:动视网
责编:小采
时间:2020-11-27 14:25:33
分析使用python的open函数时报NoSuchFileorDIr的错误原因
分析使用python的open函数时报NoSuchFileorDIr的错误原因:我写的代码如下:def createFileWithFileName(localPathParam,fileName): totalPath=local_url+'\\'+fileName if not os.path.exists(totalPath): print totalPath file=open(totalPath,
导读分析使用python的open函数时报NoSuchFileorDIr的错误原因:我写的代码如下:def createFileWithFileName(localPathParam,fileName): totalPath=local_url+'\\'+fileName if not os.path.exists(totalPath): print totalPath file=open(totalPath,

我写的代码如下:
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函数时报NoSuchFileorDIr的错误原因
分析使用python的open函数时报NoSuchFileorDIr的错误原因:我写的代码如下:def createFileWithFileName(localPathParam,fileName): totalPath=local_url+'\\'+fileName if not os.path.exists(totalPath): print totalPath file=open(totalPath,