The code below can get no. of file in folder F:\PIC,
folderPath = "F:\PIC"
Set FSO = CreateObject("Scripting.FileSystemObject")
noOfFiles = FSO.GetFolder(folderPath).Files.count
How to modify "F:\PIC" so that it can get total no. of file
inside any folders that are in F:\PIC?
Bookmarks