標題:
Python 檔案讀寫 (三) - 建立與刪除路徑
[打印本頁]
作者:
tonyh
時間:
2023-5-13 17:10
標題:
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()只能移除最內層的路徑,且內部必須是空的。
複製代碼
作者:
王捷恩
時間:
2023-5-13 17:17
import os
import shutil as su
try:
os.makedirs("a/b/c")
except OSError:
print("路徑已存在!")
else:
print("成功建立路徑!")
f=open("a/b/c/test.txt","w")
f.write("I am here!")
f.close()
複製代碼
作者:
李沛昂
時間:
2023-5-13 17:19
import os
import shutil
try:
os.makedirs("a/b/c")
except OSError:
print("路徑已存在!")
else:
print("成功建立路徑!")
f=open("a/b/c/test.txt","w")
f.write("I'm here!")
f.close()
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2