I am attempting to create a program that can transfer files. It so far
can send pure-text files no problem, but it has issues with reading
anything else. EG. It cut a 6 MB mp3 down to a 6 kb file.
After a bit of fiddling around I found that the program wasn't reading
the file properly. I'm currently using File#sysread to read the file and
File#syswrite to write the file. I don't know why it wont read the whole
file, can some body please help. Here is a copy of a similar program
with the same problem. (please dont mock it uselessness, it was made to
try and sort aforementioned problem).
f1 = File.new("BIG.txt")
f2 = File.new("big.txt", "w")
I am attempting to create a program that can transfer files. It so far
can send pure-text files no problem, but it has issues with reading
anything else. EG. It cut a 6 MB mp3 down to a 6 kb file.
I am attempting to create a program that can transfer files. It so far
can send pure-text files no problem, but it has issues with reading
anything else. EG. It cut a 6 MB mp3 down to a 6 kb file.
On Windows? "rb"
<.< >.> yes. I have no other choice. But yes, I was thinking it might be
windows fault
I am attempting to create a program that can transfer files. It so far
can send pure-text files no problem, but it has issues with reading
anything else. EG. It cut a 6 MB mp3 down to a 6 kb file.
On Windows? "rb"
<.< >.> yes. I have no other choice. But yes, I was thinking it might be windows fault
Just in case the answer wasn't clear, Windows pretends that "text" files
are different from "binary" files.
So you'll want to use "binary mode" to read/write binary files on Windows.
Thus, use "rb" instead of "r" to read a binary file, and "wb" instead of "w"
to write a binary file.