ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   sub directories again (https://www.excelbanter.com/excel-programming/290573-sub-directories-again.html)

Mike[_67_]

sub directories again
 
Hello, I thought I should repost my question because the
message string was getting old so...

how can I
input a directory like "C:\Documents and Settings\" to a
program then have a program list (or output to a file) the
subdirectories?

Thanks in advanced



Bob Phillips[_6_]

sub directories again
 
Mike,

Here is one way. It outputs the directories to a worksheet, indented as to
their levels

Dim FSO As Object
Dim cnt As Long
Dim level As Long
Dim arFiles

Sub Folders()
Dim i As Long

Set FSO = CreateObject("Scripting.FileSystemObject")

arFiles = Array()
cnt = 0
level = 1

ReDim arFiles(1, 0)
arFiles(0, 0) = "C:\myTest"
arFiles(1, 0) = level
SelectFiles "C:\myTest"

cnt = 0
For i = LBound(arFiles, 2) To UBound(arFiles, 2)
ActiveSheet.Cells(i + 1, arFiles(1, i)).Value = arFiles(0, i)
Next

End Sub

'---------------------------------------------------------------------------
----
Sub SelectFiles(sPath)
'---------------------------------------------------------------------------
----
Dim fldr As Object
Dim Folder As Object

Set Folder = FSO.Getfolder(sPath)
level = level + 1
For Each fldr In Folder.Subfolders
cnt = cnt + 1
ReDim Preserve arFiles(1, cnt)
arFiles(0, cnt) = fldr.Name
arFiles(1, cnt) = level
SelectFiles fldr.Path
level = level - 1
Next

End Sub

'---------------------------------
end-script ---------------------------------




--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Mike" wrote in message
...
Hello, I thought I should repost my question because the
message string was getting old so...

how can I
input a directory like "C:\Documents and Settings\" to a
program then have a program list (or output to a file) the
subdirectories?

Thanks in advanced





Frank Kabel

sub directories again
 
Hi Mike
have a look at
http://tinyurl.com/yvvvm

Frank

Mike wrote:
Hello, I thought I should repost my question because the
message string was getting old so...

how can I
input a directory like "C:\Documents and Settings\" to a
program then have a program list (or output to a file) the
subdirectories?

Thanks in advanced





All times are GMT +1. The time now is 02:50 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com