判斷檔案/資料夾是否存在
import os
os.path.exists(
"test_file.txt"
)#判斷當前目錄中是否存在某檔案
os.path.exists(
"data"
)#判斷當前路徑下是否存在data資料夾
判斷檔案/資料夾是否可讀寫注釋:path是檔案或資料夾的路徑;
mode:是檔案或資料夾的讀或寫等屬性,具體如下:
os.f_ok: 檢查檔案或資料夾是否存在;
os.r_ok: 檢查檔案或資料夾是否可讀;
os.w_ok: 檢查檔案或資料夾是否可以寫入;
os.x_ok: 檢查檔案或資料夾是否可以執行
import os
if os.access(
"./data/test_file.txt"
, os.f_ok)
:print
("檔案存在"
)if os.access(
"./data/test_file.txt"
, os.r_ok)
:print
("檔案可讀"
)if os.access(
"./data/test_file.txt"
, os.w_ok)
:print
("檔案可寫"
)if os.access(
"./data/test_file.txt"
, os.x_ok)
:print
("檔案可執行"
)if os.access(
"data"
, os.f_ok)
:print
("資料夾存在"
)if os.access(
"data"
, os.r_ok)
:print
("資料夾可讀"
)if os.access(
"data"
, os.w_ok)
:print
("資料夾可寫"
)if os.access(
"data"
, os.x_ok)
:print
("資料夾可執行"
)#資料夾的可執行包括哪些操作?開啟,壓縮,複製等等
try
: f =
open()
f.close(
)except filenotfounderror:
print
("檔案不存在"
)except persmissionerror:
print
("沒有開啟許可權"
)
python 檔案操作
簡明 python 教程 中的例子,python 執行出錯,用open代替file 可以執行。poem programming is fun when the work is done if you wanna make your work also fun use python f open e ...
python檔案操作
1,將乙個路徑名分解為目錄名和檔名兩部分 a,b os.path.split c 123 456 test.txt print a print b 顯示 c 123 456 test.txt 2,分解檔名的副檔名 a,b os.path.splitext c 123 456 test.txt pri...
Python 檔案操作
1.開啟檔案 如下 f open d test.txt w 說明 第乙個引數是檔名稱,包括路徑 第二個引數是開啟的模式mode r 唯讀 預設。如果檔案不存在,則丟擲錯誤 w 只寫 如果檔案 不存在,則自動建立檔案 a 附加到檔案末尾 r 讀寫 如果需要以二進位制方式開啟檔案,需要在mode後面加上...