天天看點

python 常用檔案操作擷取檔案的時間屬性用到的知識os.getcwd() 方法用于傳回目前工作目錄os.path.getatime(file) 輸出檔案通路時間os.path.getctime(file) 輸出檔案的建立時間os.path.getmtime(file) 輸出檔案最近修改時間

分離路徑和檔案名:

os.path.split()

區分檔案的名字和字尾:

os.path.splitext()

周遊檔案夾

os.listdir()

檔案是否存在

os.path.exists(‘xxx.xxx’)

檔案是否為空

os.path.getsize(‘xxx.xxx’)

建立檔案夾

建立單級目錄os.mkdir(path)

建立多級目錄os.makedirs(apth)

擷取目前目錄

os.getcwd()

擷取目前檔案

sys.argv[0]

擷取檔案的時間屬性

用到的知識

os.getcwd() 方法用于傳回目前工作目錄

os.path.getatime(file) 輸出檔案通路時間

os.path.getctime(file) 輸出檔案的建立時間

os.path.getmtime(file) 輸出檔案最近修改時間

重命名

os.rename(oldname,newname)

擷取檔案的絕對路徑

os.path.abspath(file)

向上取一級

os.path.dirname(os.path.abspath(file))