在这段代码中,我会检查文件夹是否存在,如果不存在,我会创建它,但是,我会用尾随空格创建它,因为我不能用前面的引号创建
+ ""
。如果没有此空间,我如何添加NewFolderPath
?
dir_carteiras = r"C:UsersGuilhermeMachadoDocumentsCarteiras"
test = os.listdir(dir_carteiras)
for item in test:
if item.endswith(".jpg"):
os.remove( os.path.join(dir_carteiras, item))
today=datetime.date.today()
five_day=datetime.timedelta(days=-1)
d_N1=today+five_day
d_N1_ = d_N1.strftime('%Y.%m.%d')
NewFolderPath = dir_carteiras+"Historico"+" "+d_N1_
isFile = os.path.exists(NewFolderPath)
您正在寻找os.path.join()
。它会为您插入正确的符号。
NewFolderPath = os.path.join(dir_carteiras,"Historico",d_N1_)