Answers for "how to create a file name with the current date & time in c#"

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
0

C# fileinfo creation date

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

Code answers related to "how to create a file name with the current date & time in c#"

C# Answers by Framework

Browse Popular Code Answers by Language