python 获取文件夹路径问题
谢谢大家,我想获取到我新建的文件夹路径并把这个路径赋给另外一个值来调用,但是我打印出来的是None,如果用getcwd()的话,它获取到的只是脚本的路径。请问如何实现这个...
谢谢大家,我想获取到 我新建的文件夹 路径 并把这个路径赋给另外一个值来调用,但是我打印出来的是None,如果用 getcwd()的话,它获取到的只是脚本的路径。
请问如何实现这个 需求? 展开
请问如何实现这个 需求? 展开
3个回答
展开全部
你把路径放到一个变量里,比如path,然后os.makedirs(path),再然后print path
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
def makedirs(name, mode=0777):
"""makedirs(path [, mode=0777])
Super-mkdir; create a leaf directory and all intermediate ones.
Works like mkdir, except that any intermediate path segment (not
just the rightmost) will be created if it does not exist. This is
recursive.
"""
head, tail = path.split(name)
if not tail:
head, tail = path.split(head)
if head and tail and not path.exists(head):
try:
makedirs(head, mode)
except OSError, e:
# be happy if someone already created the path
if e.errno != errno.EEXIST:
raise
if tail == curdir: # xxx/newdir/. exists if xxx/newdir exists
return
mkdir(name, mode)
os.makedir并没返回值,你可以这样dir = 'c:\1'
os.makedir(dir)
print dir
"""makedirs(path [, mode=0777])
Super-mkdir; create a leaf directory and all intermediate ones.
Works like mkdir, except that any intermediate path segment (not
just the rightmost) will be created if it does not exist. This is
recursive.
"""
head, tail = path.split(name)
if not tail:
head, tail = path.split(head)
if head and tail and not path.exists(head):
try:
makedirs(head, mode)
except OSError, e:
# be happy if someone already created the path
if e.errno != errno.EEXIST:
raise
if tail == curdir: # xxx/newdir/. exists if xxx/newdir exists
return
mkdir(name, mode)
os.makedir并没返回值,你可以这样dir = 'c:\1'
os.makedir(dir)
print dir
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询