finding the size of all the files present in a folder

Go4Expert Member
28Jul2006,10:41   #1
harish13's Avatar
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
shabbir's Avatar
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.