返回列表 發帖

Python 檔案讀寫 (三) - 建立與刪除路徑

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

  1. import os
  2. import shutil as su
  3. try:
  4.     os.makedirs("a/b/c")
  5. except OSError:
  6.     print("路徑已存在!")
  7. else:
  8.     print("成功建立路徑!")
  9. f=open("a/b/c/test.txt","w")
  10. f.write("I am here!")
  11. f.close()
複製代碼

TOP

  1. import os
  2. import shutil
  3. try:
  4.     os.makedirs("a/b/c")
  5. except OSError:
  6.     print("路徑已存在!")
  7. else:
  8.     print("成功建立路徑!")
  9. f=open("a/b/c/test.txt","w")
  10. f.write("I'm here!")
  11. f.close()
複製代碼

TOP

返回列表