Download

  • Thread starter Thread starter Guest
  • Start date Start date
Hello Sara,
You can use the FileInfo class. The Length property returns the length in
bytes.

public static long GetFileSizeInBytes(string strFullFilePath)
{
System.IO.FileInfo fi = new System.IO.FileInfo(strFullFilePath);
return fi.Length;
}

Tim Stall
http://timstall.dotnetdevelopersjournal.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Windows 11 download 1
Downloaing Videos and Photos 2
File Download - Security Warning 5
Tablet size: I love the 8 inches 1
MX-19 a decent Windows 7 replacement. 2
RTX Voice 1
Windows 11 Windows 11 update 5
News Windows 11 Download 21

Back
Top