tags:

views:

22

answers:

1

Is it possible to geht the date, when a xml-file last time was changed. I mean the date, which you can see, if you right-click the file and click properties.

+2  A: 

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.

astander
it works, thank you
elr