I have txt files around more than 500, but some of them are empty 😕 , can i reveal which of them are empty txt files? i done something like that but couldnt achive it
Files: // only the header
LOAD * INLINE [
FileName
];
FOR EACH vFile in FileList([LIB://Folder/*.txt])
CONCATENATE (Files)
'$(vFile)' AS FileName
AUTOGENERATE 1;
NEXT vFile
And then repeate a FOR loop using the "Files" table.