Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Strange behavior using MKDIR
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
01293024
Message ID:
01293045
Views:
26
This message has been marked as the solution to the initial question of the thread.
You can use CreateDirectory Win API function.
DECLARE INTEGER CreateDirectory IN WIN32API ;
    STRING lpPathName, INTEGER lpSecurityAttributes
? CreateDirectory("C:\Test",0)
? CreateDirectory("C:\Test\TEST2",0)
? CreateDirectory("C:\Test\TEST2\test3",0)
? CreateDirectory("C:\Test\TEST2\test3\TeSt4",0)
>I am using the MKDIR command to generate a folder structure on the server whenever the end user creates a new case in a CMS system.
>
>It is working fine, except for this really quirky behavior. It would appear that there is no way to control the case (i.e. upper or lower case) of the folder created by MKDIR.
>
>Here is the code I use:
>
<snip>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform