Bobby221 Posted February 20, 2008 Posted February 20, 2008 I am using a simple GUI interface to run on a KIOSK for users to walk up to, click the respective button and open the buried directory in windows explorer.My issue is that I am using:Case $msg = $Button_Directory1 CloseOpenWins() Run("explorer.exe J:\directory, etc"and it is recognizing the folder as etc instead of directory, etc.I know it would be easier just to rename my directory but that is not a possibility.I am assuming the comma (,) is causing some sort of garbage to happen therefore I think that I need to figure out how to escape the comma. I can't find anything within AUTO IT docs.
Swift Posted February 20, 2008 Posted February 20, 2008 What exactly are you tring to do? Open the Directory etc in J:\directory? Or What?
PsaltyDS Posted February 20, 2008 Posted February 20, 2008 (edited) I am using a simple GUI interface to run on a KIOSK for users to walk up to, click the respective button and open the buried directory in windows explorer. My issue is that I am using: Case $msg = $Button_Directory1 CloseOpenWins() Run("explorer.exe J:\directory, etc" and it is recognizing the folder as etc instead of directory, etc. I know it would be easier just to rename my directory but that is not a possibility. I am assuming the comma (,) is causing some sort of garbage to happen therefore I think that I need to figure out how to escape the comma. I can't find anything within AUTO IT docs. This should work: Case $msg = $Button_Directory1 CloseOpenWins() $sPath = FileGetShortName("J:\directory, etc") Run("explorer.exe " & $sPath) P.S. That method tested correctly with a path of: "C:\temp\Test\February 20, 2008" Edited February 20, 2008 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Bobby221 Posted February 21, 2008 Author Posted February 21, 2008 This should work: Case $msg = $Button_Directory1 CloseOpenWins() $sPath = FileGetShortName("J:\directory, etc") Run("explorer.exe " & $sPath) P.S. That method tested correctly with a path of: "C:\temp\Test\February 20, 2008" That worked like a charm. Thanks man, and sorry for the dim question, I just started using AutoIT. Thanks again
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