欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

分析使用python的open函数时报No Such File or DIr的错误原因

程序员文章站 2022-04-19 11:54:39
...
我写的代码如下:
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的错误原因的详细内容,更多请关注其它相关文章!

相关标签: python open函数