時間表現
一般的な時間表現形式は次のとおりです:
タイム スタンプ
フォーマットされた時間文字列
timestamp (タイムスタンプ) Unix 時間または POSIX 時間とも呼ばれ、ミリ秒数を表す時間表現です。 1970 年 1 月 1 日の 0:00:00 GMT から経過し、その値は float 型です。ただし、一部のプログラミング言語の関連メソッドは秒数を返すため (これは Python の場合です)、これにはメソッドのドキュメントを読む必要があります。タイムスタンプは差分値であり、その値はタイムゾーンとは関係がないことに注意してください。
ケースの練習:
#endcoding: utf-8 # 获取文件的时间属性 # 用到的知识 # os.getcwd() 方法用于返回当前工作目录 # os.path.getatime(file) 输出文件访问时间 # os.path.getctime(file) 输出文件的创建时间 # os.path.getmtime(file) 输出文件最近修改时间 import time import os def fileTime(file): return [ time.ctime(os.path.getatime(file)), time.ctime(os.path.getmtime(file)), time.ctime(os.path.getctime(file)) ] times = fileTime(os.getcwd()) print(times) print(type(times))
以上がファイルの作成時刻と変更時刻を取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。