Computer Science, asked by viggi96041, 10 months ago

How to use the directory class in C#?

Answers

Answered by smartybabu
0
Heys guys its ur answer

uses of dictionary class in C#


static void Main(string[] args)
{
FileInfo fi = new FileInfo(System.Reflection.Assembly.GetExecutingAssembly().Location);
if(fi != null)
Console.WriteLine(String.Format("Information about file: {0}, {1} bytes, last modified on {2} - Full path: {3}", fi.Name, fi.Length, fi.LastWriteTime, fi.FullName));
Console.ReadKey();
}

smartybabu: plzz marks on brainlist
Similar questions