Reading/parsing multiple files in a folder in NAV 2013 R2

dwk
Member Posts: 9
Hi,
I am feeling rather stupid atm... I am trying to read a bunch of .txt files from a specific folder, using a codeunit like this:
Setup i my configuration record, ResponseFile is a variable of type record, sub type File.
Setup.GET;
ResponseFile.SETRANGE(Path,Setup."Import path"+'*.txt');
ResponseFile.SETRANGE("Is a file",TRUE);
IF ResponseFile.FINDSET THEN
BEGIN
REPEAT
//Dialog.MESSAGE(ResponseFile.Name);
UNTIL ResponseFile.NEXT=0;
END;
When I try to run the above code unit, my RTC client crashes with a "The program has stopped working" message...
I would appreciate if someone could give me a pointer as to what to look for.
I am feeling rather stupid atm... I am trying to read a bunch of .txt files from a specific folder, using a codeunit like this:
Setup i my configuration record, ResponseFile is a variable of type record, sub type File.
Setup.GET;
ResponseFile.SETRANGE(Path,Setup."Import path"+'*.txt');
ResponseFile.SETRANGE("Is a file",TRUE);
IF ResponseFile.FINDSET THEN
BEGIN
REPEAT
//Dialog.MESSAGE(ResponseFile.Name);
UNTIL ResponseFile.NEXT=0;
END;
When I try to run the above code unit, my RTC client crashes with a "The program has stopped working" message...
I would appreciate if someone could give me a pointer as to what to look for.
0
Comments
-
Hi dwk,
You can check error under the event viewer. If you want to filter by extension name try to use below sample codeResponseFile.SETRANGE(Path,'C:\YourFolder\'); ResponseFile.SETRANGE("Is a file",TRUE); ResponseFile.SETFILTER(Name,'@*.txt'); IF ResponseFile.FINDSET THEN REPEAT MESSAGE(ResponseFile.Path + ResponseFile.Name); UNTIL ResponseFile.NEXT=0;
Regards,Make Simple & Easy0 -
Hi yokon,
Ah, I tried the same without the @, but couldnt make it work... thank you!yukon wrote:Hi dwk,
You can check error under the event viewer. If you want to filter by extension name try to use below sample codeResponseFile.SETRANGE(Path,'C:\YourFolder\'); ResponseFile.SETRANGE("Is a file",TRUE); ResponseFile.SETFILTER(Name,'@*.txt'); IF ResponseFile.FINDSET THEN REPEAT MESSAGE(ResponseFile.Path + ResponseFile.Name); UNTIL ResponseFile.NEXT=0;
Regards,0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions