Jump to content

Filewrite


Recommended Posts

i can't get filewrite to work if i use a large text string, can it be solved?

Func FileWrite1($filename, $writedata)

FileOpen($filename, 2)

$writedatalen = StringLen($writedata)

While StringLen(FileRead($filename)) < $writedatalen

$dafh1 = StringLen(FileRead($filename))

FileWrite($filename, StringLeft($writedata, $writedatalen))

$dafh2 = StringLen(FileRead($filename))

$writedata = StringTrimLeft($writedata, $dafh2 - $dafh1)

WEnd

EndFunc

Link to comment
Share on other sites

i can't get filewrite to work if i use a large text string, can it be solved?

Func FileWrite1($filename, $writedata)

FileOpen($filename, 2)

$writedatalen = StringLen($writedata)

While StringLen(FileRead($filename)) < $writedatalen

$dafh1 = StringLen(FileRead($filename))

FileWrite($filename, StringLeft($writedata, $writedatalen))

$dafh2 = StringLen(FileRead($filename))

$writedata = StringTrimLeft($writedata, $dafh2 - $dafh1)

WEnd

EndFunc

If you're going to FileOpen() first, then catch the handle in a variable and use that. Don't go back and perform operations with the string file name while you have (or think you have) a handle open:
Local $hFile = FileOpen($filename, 2)
    FileWrite($hFile, $writedata)
    FileClose($hFile)

:)

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