Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I read with QV an dir. with files. In the dir i have two type of files EML (Emails and PDF files).
I like to have the DateMOdified. With my script below i get only result of the PDF files.
Is it possible to read thje date modified fomr an EML file ?
SET FilePath='*.*'; sub DoDir (Dir) for each File in filelist ('$(Dir)\$(FilePath)') SET sFile = '$(File)'; NomFile: First 1 LOAD daTE(FileTime()) As FileDate, FileName() As FileName, MID(FileName(),1,8) As Order.Nummer from [$(sFile)]; next File // end sub; call DoDir ('C:\files');