嘿,我是编程新手,谁能帮我指明正确的方向?我正在尝试为一个排序程序将多个文件夹放在一个文件夹中,几乎是在检查文件夹是否存在,以及它是否不以文件类型命名的文件夹进行排序。我在查找它并找到了一些代码,但我不明白它正在写入计算机的哪个位置。这是我在网上找到的代码:
import os
# define the name of the directory to be created
path = "/tmp/year/month/week/day"
try:
os.makedirs(path)
except OSError:
print ("Creation of the directory %s failed" % path)
else:
print ("Successfully created the directory %s" % path)
慕码人8056858
慕斯709654
相关分类