Richard Robertson Posted April 30, 2008 Posted April 30, 2008 You open a file for writing, you put data in it. That's a "binary" file.
PsaltyDS Posted April 30, 2008 Posted April 30, 2008 How to create/edit a binary file? Check out the "mode" settings for the FileOpen() function in the help file. Demo: $sFile = @TempDir & "\MyBinary.bin" $binData = Binary("0xFEDCBA9876543210FEDCBA9876543210") ; Write $hFile = FileOpen($sFile, 2 + 16) ; Overwrite binary FileWrite($hFile, $binData) FileClose($hFile) ; Read $hFile = FileOpen($sFile, 16) ; Read binary $binData = FileRead($hFile) FileClose($hFile) MsgBox(64, "Read", "Data = " & $binData) 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
chenxu Posted April 30, 2008 Author Posted April 30, 2008 Check out the "mode" settings for the FileOpen() function in the help file. Demo: $sFile = @TempDir & "\MyBinary.bin" $binData = Binary("0xFEDCBA9876543210FEDCBA9876543210") ; Write $hFile = FileOpen($sFile, 2 + 16) ; Overwrite binary FileWrite($hFile, $binData) FileClose($hFile) ; Read $hFile = FileOpen($sFile, 16) ; Read binary $binData = FileRead($hFile) FileClose($hFile) MsgBox(64, "Read", "Data = " & $binData) thanks
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