os.makedirs python AttributeError

时间:2016-05-02 04:28:42

标签: python directory attributeerror

我有一个os库错误,似乎网上没有太多关于它的信息。当我尝试使用我的python脚本在ubuntu 14.04中创建一个文件夹时:

from os  import *

ncpath = "lol"

if not path.exists(ncpath):
    makedirs(path,0755)

返回此错误:

  File "/home/user/anaconda2/lib/python2.7/posixpath.py", line 85, in split
    i = p.rfind('/') + 1
AttributeError: 'module' object has no attribute 'rfind'

有人可以帮我弄清楚发生了什么吗?

1 个答案:

答案 0 :(得分:1)

下面:

makedirs(path,0755)

您正在传递path模块本身而不是ncpath这是您的字符串。