Get the last changed date of a xml-file with vb.NET
Is it possible to geht the date, when a xml-file last time was changed. I mean the date, wh开发者_运维问答ich you can see, if you right-click the file and click properties.
Did you try
File.GetLastWriteTime("c:\xmlFile.xml")
File.GetLastWriteTime Method
Returns the date and time the specified file or directory was last written to.
精彩评论