- 移除資料夾
- 資料夾如存在時就刪除,如果不存在就印出提示文字資料夾不存在
移除資料夾
#移除資料夾
import os
dir_name="Hello"
os.rmdir(dir_name)
#ps:如果本來就沒有這個資料夾的話會出現錯誤
如果沒有這個資料夾的話會出現錯誤
資料夾如存在時就刪除,如果不存在就印出提示文字資料夾不存在
import os
dir_name="Hello"
if (os.path.exists(dir_name)):
os.rmdir(dir_name)
print(dir_name+"已刪除資料夾")
else:
print(dir_name+"資料夾不存在")
Yiru@Studio - 關於我 - 意如