Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python 讀寫文件 (文件2個屬性 (路徑 (os.path (創建路徑 (os.path.join() (取得絕對路徑 (os.path…
Python 讀寫文件
文件2個屬性
名稱
創建文件夾
os.makedirs("filename")
讀寫3步驟
open()
read()/write()
close()
路徑
os.path
創建路徑
os.path.join()
取得絕對路徑
os.path.abspath(path)
取得相對路徑
os.path.relpath(path,start)
分隔符
os.path.sep
os.path.split()
與join是反操作
檔案資訊
文件路徑
取得檔案路徑
os.path.dirname(filepath)
取得檔案名
os.path.basename(filepath)
檔案大小
os.path.getsize(path)
檢查
路徑有效性
os.path.exists(path)
os.path.isdir(path)
os.path.isfile(path)
當前工作目錄
os.getcwd()
切換目錄
os.chdir("path")
os.listdir(path)