Reading a comma-delimited (csv) file in ax dynamics

How do you open and parse a csv file in ax dynamics?

+6
axapta x ++
source share
1 answer
static void TestCommaTextIO(Args _args) { #File CommaTextIo commaTextIo; FileIOPermission permission; container containFromRead; int x; int cols; ; permission = new FileIOPermission('c:\\junk\\mycsv.csv',#io_read); permission.assert(); commaTextIo = new CommaTextIO('c:\\junk\\mycsv.csv','R'); containFromRead = commaTextIo.read(); While(containFromRead) { cols = conLen(containFromRead); for(x=1;x<=cols;x++) { print conpeek(containFromRead,x); } containFromRead = commaTextIo.read(); } pause; commaTextIo = null; } 
+8
source share

All Articles