Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Andrew Coates site with GetDir replacement
Message
From
14/11/2001 10:37:48
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00581464
Message ID:
00581524
Views:
18
>Hi everyone,
>
>I'm looking for ideas to receive directory with its native format (e.g. preserving capital and non-capital letters). Ed Rauh's solution with Shell (from FAQ section) doesn't satisfy, so I'd like to find some alternatives. VFP6.0
>
>I saw one very complicated method on Andrew's site, do you know the link or simpler approach?
>
>Thanks in advance.

Do you mean the directory names?

This works for me:
oFSO = CreateObject("Scripting.FileSystemObject")
oRoot = oFSO.GetFolder("D:\")
For Each oFolder In oRoot.SubFolders
	? oFolder.Name
Next
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform