12-09-2010 07:46 AM
| Software version | 6.0.0.141 (Platform 6.4.0.64) |
| Device model | 9800 |
Solved! Go to Solution.
12-09-2010 09:47 AM
FileConnection.availableSize() returns a long not an int. So, if the folder size returned is greater than the max size for an int, it will give you a negative int when you cast it to an int. Try:
long folderSize = fconnForDirect.availableSize();
12-10-2010 01:36 AM
Hi..
Thank you very much for reply. It worked. Thanks again.
Thanks and Regards,
Ramesh.L