erikson Posted January 30, 2007 Posted January 30, 2007 hi again i have a script that run a java script. the java script generate a file ( checkbook.dat) that contains "1" or "0" the question is . how can i read that file and if is "1" the do something , or if is "0" to do another thing
mrbond007 Posted January 30, 2007 Posted January 30, 2007 hi againi have a script that run a java script. the java script generate a file ( checkbook.dat) that contains "1" or "0" the question is . how can i read that file and if is "1" the do something , or if is "0" to do another thing$file = FileOpen("checkbox.dat", 0)If $file = -1 Then MsgBox(0, "Error", "Unable to open file.") ExitEndIf$chars = FileRead($file, 1)While 1 If $chars = "0" Then Do something If $chars = "1" Then Do something else Else ExitLoop If @error = -1 Then ExitLoopWendFileClose($file) Projects : Space Regain - Memory Fusion - PWGT - Chip-ITGames : BrainPain - BrainPain Director's Cut - ProSpeed Games Pack (New)Vista vs XP : the forbidden fight
Moderators SmOke_N Posted January 30, 2007 Moderators Posted January 30, 2007 (edited) $file = FileOpen("checkbox.dat", 0) If $file = -1 Then MsgBox(0, "Error", "Unable to open file.") Exit EndIf $chars = FileRead($file, 1) While 1 If $chars = "0" Then Do something If $chars = "1" Then Do something else Else ExitLoop If @error = -1 Then ExitLoop Wend FileClose($file)Or: If StringInStr(FileRead($FileLocationName), '0') Then ;Do Something Else ;Do something else EndIf Edited January 30, 2007 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
erikson Posted January 30, 2007 Author Posted January 30, 2007 thanks Sm0ke_N the second version is much faster and easyer
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