python中查看文件創(chuàng)建時(shí)間的方法:1、在win操作系統(tǒng)中找到python程序目錄;2、打開(kāi)idle工具;3、在idle中新建一個(gè)shell腳本;4、輸入“import os,time”指令導(dǎo)入os模塊和time模塊;5、通過(guò)“os.path.getctime(文件路徑)”指令查看文件創(chuàng)建時(shí)間即可。
具體操作方法:
1、在win系統(tǒng)的開(kāi)始菜單中找到python程序。
2、在python程序目錄中找到并打開(kāi)idle工具程序。
3、在idle工具中點(diǎn)擊左上角的“File”并選擇“New File”新建一個(gè)shell腳本。
4、在shell腳本中輸入以下指令導(dǎo)入os模塊和time模塊。
import os,time #導(dǎo)入os模塊和time模塊
5、最后通過(guò)以下指令查看文件創(chuàng)建時(shí)間即可。
os.path.getctime(path) #path指的是文件路徑
相關(guān)實(shí)例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import os,time
file='/root/yisu.txt' # 文件路徑
print(os.path.getctime(file)) #輸出文件創(chuàng)建時(shí)間