keilamym Posted July 2, 2013 Posted July 2, 2013 all I need it to do it open a folder... (c:temp folder for example)... im not pro but ive written many scripts and out of all the scripts i've written, I've never had to open a folder to present it to the user... is there an autoit command for this? I cant seem to find it...
Moderators JLogan3o13 Posted July 2, 2013 Moderators Posted July 2, 2013 ShellExecute("C:\temp") ? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Developers Solution Jos Posted July 2, 2013 Developers Solution Posted July 2, 2013 Open a folder as in starting the Windows explorer with a certain directory opened in it? $FilePath = "C:\temp" ShellExecute("Explorer.exe", "/e,""" & $FilePath & """") SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Noviceatthis Posted July 2, 2013 Posted July 2, 2013 (edited) Hello all In the second line given by Jos, (ShellExecute("Explorer.exe", "/e,""" & $FilePath & """")) what does the /e signify?? Edited July 2, 2013 by Noviceatthis
Developers Jos Posted July 2, 2013 Developers Posted July 2, 2013 Have you tried finding it our yourself before asking? There is a wealth of information out there for you grab whenever you feel like it. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Noviceatthis Posted July 2, 2013 Posted July 2, 2013 Sorry, got it :-P, http://support.microsoft.com/kb/130510
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