Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: neilkenny
  • Order by date
  1. neilkenny

    How can I find how many files and subfolders are in a folder

    I just used a recursive function aswell, pretty much the way you have it. I don't have a great knowledge with c++ so I can't help you there.
  2. neilkenny

    How can I find how many files and subfolders are in a folder

    I have the code to do this aswell if you want it, I had to design a program to do the exact same thing a few weeks ago
  3. neilkenny

    How can I find how many files and subfolders are in a folder

    This might help Dim fs As Object Dim myPath As String Dim myFolder Dim thing fs = CreateObject("scripting.filesystemobject") myFolder = fs.getfolder(myPath) 'This loop searches for sub-folders within the main folder For Each thing In myFolder.subfolders 'This will...

Part and Inventory Search

Back
Top