www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Reading and writing a binary file

reply jicman <jicman_ _gmail.com> writes:
Greetings.

I am have a python script that I need to move to d.  How do I read a
binary file (say, c:\tmp\user.doc) and also how do I write a binary
file (say, c:\tmp\new.doc)?

Thanks,

josé
Dec 14 2006
parent Bill Baxter <wbaxter gmail.com> writes:
jicman wrote:
 Greetings.
 
 I am have a python script that I need to move to d.  How do I read a
 binary file (say, c:\tmp\user.doc) and also how do I write a binary
 file (say, c:\tmp\new.doc)?
 
 Thanks,
 
 jos�
I observed that std.stream.File and std.stream.BufferedFile *always* work in binary mode and you can't change that. In your case that's a good thing. http://d.puremagic.com/issues/show_bug.cgi?id=590 --bb
Dec 14 2006