I'm trying to use fread/ifstream to read the first 2 bytes of a .csv with BOM info. But following code always skips the first two bytes (which are 'FF FE'):

ifstream is;
is.open (fn, ios::binary );
char buf[2];
is.read(buf, 2);
is.close();

using FILE*/fread does no better.

link|improve this question

20% accept rate
Binary mode shouldn't change the file contents. Are you sure it really has a BOM? – dan04 Mar 19 '10 at 5:43
sure. copied in hex from ultraedit: 00000000h: FF FE 73 00 6D 00 73 00 2C 00 73 00 75 00 62 00 ; .m.s.,.s.u.b. – al_lea Mar 19 '10 at 6:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.