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 to get the row index on checking a Checkbox in a ListView
what is software testing
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??
how to upload an excel in c# ASP.Net?
Listview design in .net
Code for Presenting Parent/Child Data in a Data Grid Row?
How to Export Data to Excel?
What do you create for easier access of data?
Coding for .NET Delegates?
Coding for Synchronizing Cache Access in ASP.NET?
ArrayList declaration in .net
how to convert Dataset to Object Array or list in c# .net