gpt4 book ai didi

python - 如果 python 不工作,则在 os.mkdir 下

转载 作者:行者123 更新时间:2023-12-01 03:55:29 35 4
gpt4 key购买 nike

我有以下代码,os.mkdir 在我的代码上不起作用。编译不会返回任何错误,但运行代码不会创建文件夹。

def folder():
timenow = datetime.now().strftime('%Y-%m-%d_%H%M%S')
folderpath = os.path.join(currentpath,"folder",str(timenow))
if os.path.exists(folderpath) == False:
os.mkdir(folderpath)
return

最佳答案

试试这个:

def folder():
timenow = datetime.now().strftime('%Y-%m-%d_%H%M%S')
folderpath = os.path.join(currentpath, "folder", str(timenow))
if not os.path.exists(folderpath):
os.makedirs(folderpath)
print 'Created:', folderpath

folder()

makedirs 将创建所需的子目录,而 mkdir 只能创建一个目录。也就是说,您应该已经看到了异常。

关于python - 如果 python 不工作,则在 os.mkdir 下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37535080/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com