Python 2.7
Ubuntu 12.04
我正在尝试创建我编写的程序的可执行文件,它需要做的第一件事就是创建一个目录,当运行源代码时它完美地工作,当我创建一个可执行文件时,我收到以下错误:
[Errno 13] Permission denied: '/"folder_name"'
创建文件夹的代码:
def create_folder(self, user_input):
"""create base folder"""
splitput = user_input.split('=')
fold_title = splitput[-1]
try:
print 'making folder'
os.mkdir('/'+fold_title, 0777)
print 'made folder'
except Exception as e:
print e
print 'failed to create folder'
returned_path = '/'+fold_title+'/'
returned_path = '/'+fold_title+'/'
print returned_path
return returned_path
答案 0 :(得分:3)
当前用户无权在“/”下创建目录。变量“fold_title”中有qoutation标记,如果你真的需要路径中的qoutation标记,请查看它。