Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sub directories | Excel Programming | |||
Directories | Excel Programming | |||
changing directories | Excel Programming | |||
Searching directories... | Excel Programming | |||
Searching directories... | Excel Programming |