我有下面的代碼,os.mkdir
不工作在我的。編譯不會返回任何錯誤,但運行代碼不會創建文件夾。os.mkdir下如果不工作python
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
你能張貼代碼,以便有人能看懂了嗎? –
什麼是'currentpath'? – 101
當前路徑是目錄:C:\ PythonScript –