From: "Brad C." Date: 2006-04-05T07:13:00+09:00 Subject: Re: Using File.open block to manage svnadmin dump stream unknown wrote: > but if the problem is on a Windows system then you have > to explicitly > open the file in binary mode to avoid the LF CR/LF issues of text I/O. > > Gary Wright Well, I tried this to no avail (I assume this is using a binary mode file): File.open("c:/testrb.txt","w") do |f| f.binmode # I'm not really sure if this puts f in binary mode or not. f << "Test" end Still results in different file sizes. -- Posted via http://www.ruby-forum.com/.