Tsukihime Posted May 11, 2011 Posted May 11, 2011 (edited) Here is a simple text file called "test.txt" which contains just "abcde" 61 62 63 64 65 When I say $file = FileOpen("test.txt", 17) filesetpos($file, 0, 0) FileWrite($file, 0x0) FileClose($file) I get 00 00 00 00 65 How do I get it to only write a single null byte so that I get 00 62 63 64 65 Edited May 11, 2011 by Tsukihime
iamtheky Posted May 11, 2011 Posted May 11, 2011 $file = FileOpen("test.txt", 1) filesetpos($file, 0, 0) FileWrite($file, 0) filesetpos($file, 0, 1) FileWrite($file, 0) FileClose($file) run ("notepad.exe " & @ScriptDir & "\test.txt") ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__)
Tsukihime Posted May 11, 2011 Author Posted May 11, 2011 Found a solution: $file = FileOpen("test.txt", 17) filesetpos($file, 0, 0) FileWrite($file, chr(0)) FileClose($file) Don't know why that did it but it works lol
jchd Posted May 11, 2011 Posted May 11, 2011 FileWrite($file, 0x0) does what you ask it to do: write a 32-bit integer with value 0, hence the four 0x00 at top of your dumped file. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
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