Code for Getting Information About A File?
here we have the system.io base class in .net
FileInfo is the class which has the properties and methods
to display information about the file.
example code
FileInfo fi = new FileInfo("givepath");
Console.WriteLine("File Name:"+fi.Name);
Console.WriteLine("FullName:"+fi.FullName);
Console.WriteLine("Creation Time:"+fi.CreationTime);
Console.WriteLine("Last Access Time:"+fi.LastAccessTime);
Console.WriteLine("File Deleted :"+fi.Delete());
We can similarly know about the directory information using
DirectoryInfo di = new DirectoryInfo("path");
Is This Answer Correct ? | 8 Yes | 0 No |
how the value of label is printed through a button in asp.net web application
How we use ajax in asp.net through javaScript. Please givee me an example.
where is assembly are store
What do you create for easier access of data?
Coding for Synchronizing Cache Access in ASP.NET?
Give coding for Implementing a Fixed GridView Header in ASP.NET?
how to convert Dataset to Object Array or list in c# .net
How to send e-mail from an ASP.NET application?
16 Answers DataPoint, Infosys, Persistent, Radar, TCS, Wipro,
Code for a Simple Way to Write XML in .NET (XmlTextWriter)
Coding for .NET Delegates?
What is the code of Password Recovery or Forget your password? Plz tell in c # language.
How to get the row index on checking a Checkbox in a ListView