S
somequestion
During copying file , wanna read file Size like this
string CheckFileSize(string fileName)
{
if( fileName == null ) return;
FileInfo fi = new FileInfo(fileName);
return fi.Length.ToString();
}
but it shows total file size...
i just wanna read changing of file Size....
how can i get this?
string CheckFileSize(string fileName)
{
if( fileName == null ) return;
FileInfo fi = new FileInfo(fileName);
return fi.Length.ToString();
}
but it shows total file size...
i just wanna read changing of file Size....
how can i get this?