GLBasic forum

Main forum => GLBasic - en => Topic started by: mich19 on 2006-Jul-07

Title: create directory
Post by: mich19 on 2006-Jul-07
How to create a directory with "SHELLCMD" under xp

ex:MKDIR directory
Title: create directory
Post by: Kitty Hello on 2006-Jul-07
SHELLCMD("mkdir test", FALSE); maybe - not tried.
Title: create directory
Post by: Baggi on 2006-Jul-07
Yes,
Code (glbasic) Select
mkdir directoryworks under XP, I have tried it.
Title: create directory
Post by: mich19 on 2006-Jul-07
My commands do not work


SHELLCMD ("mkdir test", FALSE , TRUE, rv)
SHELLCMD("cmd /mkdir test", TRUE, FALSE, rv)
SHELLCMD("cmd mkdir> test", TRUE, FALSE, rv)
Title: create directory
Post by: Baggi on 2006-Jul-07
QuoteSHELLCMD ("mkdir test", FALSE , TRUE, rv)
oh, I am not familar with this syntax. I only tried mkdir directory in the shell (or it is called prompt ??) under XP.