Code for Getting Information About A File?



Code for Getting Information About A File?..

Answer / senthil kumar

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

Post New Answer

More ASP.NET Code Interview Questions

What is the code of Password Recovery or Forget your password? Plz tell in c # language.

0 Answers  


Coding for .NET Delegates?

0 Answers  


how to track links visited in google using iframes

0 Answers  


How to get the row index on checking a Checkbox in a ListView

1 Answers  


Code for Document Validation in XML.NET?

0 Answers   TCS,






Code for Communicating over Sockets?

0 Answers  


where is assembly are store

5 Answers   C DAC,


what is the value that reside in a hidden field when no value is assigned to it?how it can be used in a if statement??

1 Answers  


How to get the row index on checking a Checkbox in a ListView

1 Answers   TCS,


Code for a Simple Way to Write XML in .NET (XmlTextWriter)

1 Answers  


What do you create for easier access of data?

3 Answers   NIIT,


How to Export Data to Excel?

4 Answers   Eastcom Systems,


Categories
  • ASP.NET Code Interview Questions ASP.NET Code (46)
  • VB.NET Code Interview Questions VB.NET Code (9)
  • C Sharp Code Interview Questions C Sharp Code (51)
  • ADO.NET Code Interview Questions ADO.NET Code (8)