
Pythonimport os, time, datetimeprint("創立時間: " + datetime.datetime.fromtimestamp(os.path.getctime(file)).strftime("%Y-%m-%d %H:%M:%S"))print("修改時間: " + datetime.datetime.fromtimestamp(os.path.getmtime(file)).strftime("%Y-%m-%d %H:%M:%S"))程式執行效果如下C#using System.IO;FileInfo f = new FileInfo(strFile);DateTime dtCreate = f.CreationTime;DateTime dtModify = f.LastWriteTime;程式執行效...