Rizwan606 Posted July 9, 2011 Posted July 9, 2011 Hello, I am new to AutoIT. I want to know that "how can I access .au3 file in "My Documents/Downloads" folder from another .au3 file".I know how to access the file from desktop from this code "Run(@AutoItExe & ' "' & @ScriptDir & '\file2.au3"')"But can't access it in "My Document/Downloads" folder. Basically I want to Recursively call the same .au3 file again and againThanks
GEOSoft Posted July 9, 2011 Posted July 9, 2011 I'm not biting on the recursive part just yet but what you will have to do is get the path correct. probably Run(@AutoItExe & ' "' & @MyDocumentsDir & '\Downloads\file2.au3"') George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Rizwan606 Posted July 9, 2011 Author Posted July 9, 2011 I'm not biting on the recursive part just yet but what you will have to do is get the path correct. probably Run(@AutoItExe & ' "' & @MyDocumentsDir & '\Downloads\file2.au3"') It worked.. Thanks :-)
dexto Posted July 9, 2011 Posted July 9, 2011 Hello, I am new to AutoIT. I want to know that "how can I access .au3 file in "My Documents/Downloads" folder from another .au3 file". I know how to access the file from desktop from this code "Run(@AutoItExe & ' "' & @ScriptDir & '\file2.au3"')" But can't access it in "My Document/Downloads" folder. Basically I want to Recursively call the same .au3 file again and again Thanks Same au3 you say? This should work too. Run(@AutoItExe & ' "' & @ScriptFullPath & '"')
Rizwan606 Posted July 10, 2011 Author Posted July 10, 2011 Same au3 you say? This should work too. Run(@AutoItExe & ' "' & @ScriptFullPath & '"') WoW. Very Nice. Worked Excellently.. Thanks :-). Can you please explain how did it recursively called the same .au3 file.
dexto Posted July 10, 2011 Posted July 10, 2011 WoW. Very Nice. Worked Excellently.. Thanks :-).Can you please explain how did it recursively called the same .au3 file.There is really not much to explain, @autoit exe is passed parameter with its a script file currently executing. Just look into help file by pressing F1 when you keyboards cursor is at @autoitexe for example.
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