How to get file attributes?

Gopesh9
Posted by Gopesh9 under C# category on | Points: 40 | Views : 1730
string filePath = @"c:\test.txt";
FileAttributes fileAttributes = File.GetAttributes(filePath);

Comments or Responses

Login to post response