Python常用檔案操作參考

2021-05-31 21:41:54 字數 2040 閱讀 8367

**:

[1.os]

1.重新命名:os.rename(old, new)

2.刪除:os.remove(file)

3.列出目錄下的檔案:os.listdir(path)

4.獲取當前工作目錄:os.getcwd()

5.改變工作目錄:os.chdir(newdir)

6.建立多級目錄:os.makedirs(r」c:\python\test」)

7.建立單個目錄:os.mkdir(「test」)

8.刪除多個目錄:os.removedirs(r」c:\python」) 

#刪除所給路徑最後乙個目錄下所有空目錄。

9.刪除單個目錄:os.rmdir(「test」)

10.獲取檔案屬性:os.stat(file)

11.修改檔案許可權與時間戳:os.chmod(file)

12.執行作業系統命令:os.system(「dir」)

13.啟動新程序:os.exec(), os.execvp()

14.在後台執行程式:osspawnv()

15.終止當前程序:os.exit(), os._exit()

16.分離檔名:os.path.split(r」c:\python\hello.py」) –> (「c:\\python」, 「hello.py」)

17.分離副檔名:os.path.splitext(r」c:\python\hello.py」) –> (「c:\\python\\hello」, 「.py」)

18.獲取路徑名:os.path.dirname(r」c:\python\hello.py」) –> 「c:\\python」

19.獲取檔名:os.path.basename(r」r:\python\hello.py」) –> 「hello.py」

20.判斷檔案是否存在:os.path.exists(r」c:\python\hello.py」) –> true

21.判斷是否是絕對路徑:os.path.isabs(r」.\python\」) –> false

22.判斷是否是目錄:os.path.isdir(r」c:\python」) –> true

23.判斷是否是檔案:os.path.isfile(r」c:\python\hello.py」) –> true

24.判斷是否是鏈結檔案:os.path.islink(r」c:\python\hello.py」) –> false

25.獲取檔案大小:os.path.getsize(filename)

26.*******:

os.ismount(「c:\\」) –> true

27.搜尋目錄下的所有檔案:os.path.walk()

[2.shutil]

1.複製單個檔案:shultil.copy(oldfile, newfle)

2.複製整個目錄樹:shultil.copytree(r」.\setup」, r」.\backup」)

3.刪除整個目錄樹:shultil.rmtree(r」.\backup」)

[3.tempfile]

1.建立乙個唯一的臨時檔案:tempfile.mktemp() –> filename

2.開啟臨時檔案:tempfile.temporaryfile()

[4.stringio]#cstringio是

stringio

模組的快速實現模組

1.建立記憶體檔案並寫入初始資料:f = stringio.stringio(「hello world!」)

2.讀入記憶體檔案資料:print f.read() #

或print f.getvalue() –> hello world!

3.想記憶體檔案寫入資料:f.write(「good day!」)

4.關閉記憶體檔案:f.close()

[5.glob]

1.匹配檔案:glob.glob(r」c:\python\*.py」)

Python常用檔案操作參考

1.os 1.重新命名 os.rename old,new 2.刪除 os.remove file 3.列出目錄下的檔案 os.listdir path 4.獲取當前工作目錄 os.getcwd 5.改變工作目錄 os.chdir newdir 6.建立多級目錄 os.makedirs r c py...

Python常用檔案操作

使用python進行檔案操作是各種資料預處理的必備技能。主要涉及的是檔名和路徑字串處理。import os,shutil,sysbase dir os.path.dirname os.path.abspath file 新增到import庫查詢目錄 複製檔案 shutil.copy c a 1.tx...

python 檔案常用操作

1.開啟檔案 open 開啟檔案並返回檔案物件,引數很多,一般用前兩個,open file,mode file可以是檔名或者檔案目錄下的檔名,mode為開啟的方式,可以是唯讀 寫入 追加寫入 可讀可寫等等。開啟某個檔案,需要知道該檔案的目錄,或者該檔案就在當前的工作目錄下。1 包含目錄的檔名 不修改...