chenxu Posted May 13, 2008 Posted May 13, 2008 Look into the code$file = FileOpen("test.bin", 18) FileWrite($file, Binary(0xff)) FileClose($file)what I am gonna do is open a binary file test.bin, and write ONE Byte into it. But, this code do not do this, it opens test.bin file and writes 4 Bytes into the file.Here is the question: how to write ONE Byte but 4 Bytes one time?thanks
chenxu Posted May 13, 2008 Author Posted May 13, 2008 OK, the problem is solved $file = FileOpen("test.bin", 18) FileWrite($file, Binary("0xff")) FileClose($file)
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