volkerimmler Posted February 28, 2005 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
Guest tygran Posted February 28, 2005 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
volkerimmler Posted February 28, 2005 Author Posted February 28, 2005 thanks a ton.... yup...that would be WAY slicker than what I have done to this point.....
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now