Cool. Thank you Tim!
Jane Chen wrote:
> Thank you for your help, Roger and Tim!
>
> Problem solved. I realized that I can simplify my problem by
> using win32file.ReadFile()to create a bin file.
You don't even need to go that far. There's nothing you can do with
win32file.ReadFile that you cannot also do using perfectly normal Python
file I/O, and that has the advantage of being cross-platform:
binaryfile = open('myfile.bin','rb')
buffer = binaryfile.read(4096)
--
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.
------------------------------
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32