當(dāng)前位置:首頁 > IT技術(shù) > 編程語言 > 正文

Python文件及目錄處理方法
2021-11-30 22:56:34

Python可以用于處理文本文件和二進(jìn)制文件,比如創(chuàng)建文件、讀寫文件等操作。本文介紹Python處理目錄以及文件的相關(guān)方法。

@toc

下面先來介紹python目錄處理相關(guān)方法。

目錄操作

1. 獲取當(dāng)前代碼路徑

test_folder.py

import os
import sys

print(__file__)
print(sys.argv[0])
print(os.path.realpath(__file__))
print(os.path.abspath(sys.argv[0]))

Out:

D:/ProgramWorkspace/PythonNotes/03-File-Handling/test_folder.py
D:/ProgramWorkspace/PythonNotes/03-File-Handling/test_folder.py
D:ProgramWorkspacePythonNotes