Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
FOR Each file in 'xxx', 'zzz'
LOAD * FROM $(file).qvd (qvd);
NEXT;
load filebasename() as file, *
from *.txt (...)
hope this helps
regards
marco