I want to get the total count of tmp files in c drive. it shows error. Below mentioned is the code which I have use.
fileCount = Directory.GetFiles(@"C:\\", "*.tmp", SearchOption.AllDirectories).Length;
when I run this it shows access denied error.
c:\system volume information is access denied.
please resolve the same.
Loading
Vithal WadjePosted Nov 27, 2012, 11:00 PM
Poppa WallacePosted Nov 27, 2012, 5:33 PM
var count = Directory.GetFiles(@"c:\\")
.Count(p => Path.GetExtension(p) != ".tmp");
MessageBox.Show(count.ToString());
Thats all I can suggest
Jay