Jump to content

get value from file


erikson
 Share

Recommended Posts

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

Link to comment
Share on other sites

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

$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)

Link to comment
Share on other sites

  • Moderators

$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 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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...