Python 檔案讀寫 (三) - 建立與刪除路徑
本帖最後由 tonyh 於 2023-9-16 17:20 編輯
- import os
- import shutil as su
- try:
- os.makedirs("a/b/c") #os.mkdir()只能建立一層
- except OSError:
- print("路徑已存在!")
- else:
- print("成功建立路徑!")
- f=open("a/b/c/test.txt","w")
- f.write("I am here!")
- f.close()
- #os.remove("a/b/c/test.txt") #移除檔案
- #su.rmtree("a/b/c") #移除目標路徑及其內部所有檔案;os.rmdir()只能移除最內層的路徑,且內部必須是空的。
複製代碼 |