System.IO.FileInfo fi = new System.IO.FileInfo(@"c:\temp\" + newFile + "__" + fileName);
long fileSizeInBytes = fi.Length; //size in Bytes
1
solved How to get size of a file using C#?
System.IO.FileInfo fi = new System.IO.FileInfo(@"c:\temp\" + newFile + "__" + fileName);
long fileSizeInBytes = fi.Length; //size in Bytes
1
solved How to get size of a file using C#?