Read the Folder File
tonypang
Member Posts: 101
Hello Master
Now i facing some issue
If i need to read the file from Folder.
How to write the in Navision to read the file.
Example: (my directory C:\Data )
I got 1 folder name as : File and Backup
Inside File folder consist of 3 file : 1.txt,2.txt,3.txt etc
How read the file name from this file one after another
After first file read then need to move it to Backup folder then continues another file.
Can the Navision write this kind of scenario ?
Hope the master here can help me.
Thank you
Now i facing some issue
If i need to read the file from Folder.
How to write the in Navision to read the file.
Example: (my directory C:\Data )
I got 1 folder name as : File and Backup
Inside File folder consist of 3 file : 1.txt,2.txt,3.txt etc
How read the file name from this file one after another
After first file read then need to move it to Backup folder then continues another file.
Can the Navision write this kind of scenario ?
Hope the master here can help me.
Thank you
NAV
0
Comments
-
1) Search for File virtual table
2) Look at RENAME or COPY command in the FILE section of C/AL Symbol menu0 -
I still not sure how to do it.
Do you have sample code ?
ThanksNAV0 -
FileTest.OPEN('c:\Data\Test.txt');
FileTest.CREATEINSTREAM(streamInTest);
WHILE NOT (streamInTest.EOS()) DO
BEGIN
Int:= streamInTest.READTEXT(Txt,100);
END;
FileTest.CLOSE();
Is it the above script just for read the text file right?
then how to read the file from the folder ?
Hope the master here can help me.
ThanksNAV0 -
Once again, search this forum for "File" table and how to use it...0
-
Please follow kine's advice: http://lmsmfy.com/?q=file+virtual+tableNo support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)0
-
thanksNAV0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K 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
- 611 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 253 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions

