Jump to content

How to create a binary file?


Recommended Posts

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
Link to comment
Share on other sites

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