I am trying to read from several huge files which may contain embedded null strings in some lines. fread() always stops with message "Jump %d did not finish counting rows exactly where jump %d found its first good line start".
Since I have some many files to read and I don't care to lose some broken lines of data, is it possible to let fread() just ignore the error and continue reading?
I am trying to read from several huge files which may contain
embedded null stringsin some lines.fread()always stops with message "Jump %d did not finish counting rows exactly where jump %d found its first good line start".Since I have some many files to read and I don't care to lose some broken lines of data, is it possible to let
fread()just ignore the error and continue reading?