# 匯入os模組
import os
# 獲取當前路徑
os.getcwd()
# 列印當前路徑
print(os.getcwd())
# 建立test_dir資料夾,當資料夾已存在無法建立會報錯
os.mkdir("test_dir")
os.mkdir("test_dir\tmp_dir")
# 進入test_dir資料夾,進行對比演示
print(os.getcwd())
os.chdir("test_dir")
print(os.getcwd())
# 刪除tmp_dir資料夾,然後進入test_dir資料夾進行確認
os.rmdir("test_dir/tmp_dir")
os.chdir("test_dir")
print(os.getcwd())
# 列出當前資料夾所有的資訊
os.listdir("test_dir")
切記:資料夾內如果有其他檔案的時候是不能直接刪除資料夾的,因為是非空資料夾,需要使用遍歷或者進到資料夾內部進行刪除 python 刪除檔案 目錄
remove 同 unlink 的功能是一樣的 在windows系統中,刪除乙個正在使用的檔案,將丟擲異常。在unix中,目錄表中的記錄被刪除,但檔案的儲存還在。使用os.unlink 和os.remove 來刪除檔案 user local bin python2.7 coding utf 8 im...
python 遞迴刪除檔案 目錄
python 遞迴刪除檔案 目錄本文講述了python實現刪除檔案與目錄的方法。具體實現方法如下 一 刪除檔案 os.remove path 刪除檔案 path.如果path是乙個目錄,丟擲 oserror錯誤。如果要刪除目錄,請使用rmdir remove 同 unlink 的功能是一樣的 my ...
PHP刪除目錄及目錄下所有檔案
函式 php刪除目錄及目錄下所有檔案 功能 php操作檔案。刪除指定目錄及 或 該目錄下的所有檔案。語言 php 函式 一 刪除目錄及目錄下的所有檔案?12 3 4 56 7 8 910 11 12 13 14 15 16 17 18 19 20 21 22 23 24 functiondelfil...