i want to find the total size of all files present in a folder how can i do this
thank u in advance
|
Go4Expert Founder
|
![]() |
| 28Jul2006,11:45 | #2 |
|
Use FindFirstFile API which searches a directory for a file whose name matches the specified filename. FindFirstFile examines subdirectory names as well as filenames. If the function succeeds, the return value is a search handle used in a subsequent call to FindNextFile and calculate the size of each file and add up to find the size of the folder.
|

