volkerimmler 0 Posted February 28, 2005 I am an absolute beginner - so please excuse my ignorance..... I need to create a new folder named after the value passed along in the command line - so far I have been sort of able to get by with bringing up WinExplorer and starting to emulate keystrokes - but I am sure there is a much slicker way....... any pointers? Thanks Share this post Link to post Share on other sites
Guest tygran Posted February 28, 2005 (edited) You can use the "DirCreate"-Command.Example:Global $InstallPath$CmdLine[0] = 1 // one argument expected in the command line$InstallPath = $CmdLine[1] // first argument is the directory you want to createDirCreate($InstallPath)I hope I could help you - If you you want to know more about autoit, read the help file. Under "Function Reference\File, Directory and DiskManagement\" you can find the DirCreate command and related commands. Download the help file under: http://www.autoitscript.com/autoit3/downloads.phpRegards, Tygran Edited February 28, 2005 by tygran Share this post Link to post Share on other sites
volkerimmler 0 Posted February 28, 2005 thanks a ton.... yup...that would be WAY slicker than what I have done to this point..... Share this post Link to post Share on other sites