Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
MD through a WinAPI Call
Message
 
 
To
06/12/2001 12:23:50
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00590631
Message ID:
00590676
Views:
27
>I have mislaid and subsequently have been unable to find, an article/download/FAQ etc which enabled a user to create a folder through, I believe :-
>
>oShellObj = CREATEOBJECT('Shell.Application')
>
>Any pointers would be appreciated.
>
>TIA
>
>Dennis
oFSO = CREATEOBJECT( "Scripting.FileSystemObject" )
IF NOT oFSO.FolderExists( "c:\foxtemp" )
     oFSO.CreateFolder( "c:\foxtemp" )
ENDIF
oFSO = .NULL.
RELEASE oFSO
Previous
Reply
Map
View

Click here to load this message in the networking platform