Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要找到一天中最后一次修改文件的时间。
使用下面的代码我只得到日期:
System.IO.File.GetLastWriteTime(Server.MapPath("myFile.txt")).ToString("D");
如何只获得时间部分?
使用 HH、mm、ss:
System.IO.File.GetLastWriteTime(Server.MapPath("myFile.txt")).ToString("HH:mm:ss");
可能这会有所帮助:
System.IO.File.GetLastWriteTime(@"C:\MyPath\a.txt").TimeOfDay.ToString()
我去这个:
17:55:14.3229896
您可以根据自己的方便进行格式化