Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to do

Hello ,

I need to have a list of files loaded to my application

Is there any way to get it ?

e.g.

I loaded file name "xxx" and "zzz"
The list :
"xxx"

"zzz"

Thanks in Advance

3 Replies
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

If this list of files to load is static then I will just turn the list into a table and use either FOR Each LOOP or FOR LOOP to pick up each value in the table to load.


maxgro
MVP
MVP

FOR Each file in 'xxx', 'zzz'

     LOAD * FROM $(file).qvd (qvd);

NEXT;

MarcoWedel

load filebasename() as file, *

from *.txt (...)


hope this helps

regards

marco