22-12-2008, 08:55 AM
Probably so simple, just missing it. How do I create a Folder through the code. For Backups & such?
Create Folder
|
22-12-2008, 08:55 AM
Probably so simple, just missing it. How do I create a Folder through the code. For Backups & such?
22-12-2008, 02:15 PM
Call MkDir(App.Path & "\Database")
Creates a folder named 'Database' on the same folder that the calling program is running.
22-12-2008, 05:17 PM
Works perfect, now I know. ;D
Thanks.
23-12-2008, 04:55 PM
No problem ^^
Just to remember, it's good to check if the folder already does not exist, before creating it. Code: ' Check if the database directory is there, if its not make it
23-12-2008, 09:37 PM
Already done.
|
« Next Oldest | Next Newest »
|