Hello, Gintaras ~!!! it's been toooo long~!!
Most of files are OK, but some csv files couldn't get directly with csv.FromFile()
OS: Windows 8.1 x64
== Original code
ICsv Contents._create
str ST1
ST1.format("d:\somefile.csv")
Contents.Separator="|"
Contents.FromString(ST1);err
== modded by searching in forum threads -> get csv to file with getfile, delete '' with findreplace, and csv.FromString()
ICsv Contents._create
str strContents ST1
ST1.format("d:\somefile.csv")
strContents.getfile(ST1)
strContents.findreplace("''" "")
Contents.Separator="|"
Contents.FromString(strContents);err
Most of files are OK, but some csv files couldn't get directly with csv.FromFile()
OS: Windows 8.1 x64
== Original code
ICsv Contents._create
str ST1
ST1.format("d:\somefile.csv")
Contents.Separator="|"
Contents.FromString(ST1);err
== modded by searching in forum threads -> get csv to file with getfile, delete '' with findreplace, and csv.FromString()
ICsv Contents._create
str strContents ST1
ST1.format("d:\somefile.csv")
strContents.getfile(ST1)
strContents.findreplace("''" "")
Contents.Separator="|"
Contents.FromString(strContents);err