Answers for "how to get the date of a file in c# windows application"

C#
0

get date from file c#

DateTime creation = File.GetCreationTime(@"C:test.txt");
DateTime modification = File.GetLastWriteTime(@"C:test.txt");
Posted by: Guest on July-13-2021

Code answers related to "how to get the date of a file in c# windows application"

C# Answers by Framework

Browse Popular Code Answers by Language