Hi,
How i can find file size in windows mobile ? (using c#)
Thanks in advance.
Hi,
How i can find file size in windows mobile ? (using c#)
Thanks in advance.
Use the Length property of a FileInfo class:
FileInfo fi = new FileInfo(pathToMyFile);
if(fi.Exists)
long sizeOfMyFile = fi.Length;