Re: file write IOError Invalid argument

2009-07-19 Thread Gabriel Genellina
En Thu, 16 Jul 2009 17:41:39 -0300, Robert Robert robertrober...@yahoo.com escribió: I am trying to write a binary string to file on a windows network share. I get an IOError. I've read that it is because the file size is too large. I did a type( binaryString) and saw that it was type str.

file write IOError Invalid argument

2009-07-16 Thread Robert Robert
Hello All, I am trying to write a binary string to file on a windows network share. I get an IOError. I've read that it is because the file size is too large. I did a type( binaryString) and saw that it was type str. So I loop through it one by one element and use f.write to write to file, and