-- Import.rmd -- Imports a directory listing into a temp table. SET VAR vDirectory TEXT = C:\RBTI\RBG7\TEST -- change to suit ZIP CMD /C DIR > Dir.txt CREATE TEMP TABLE DirImport (DirImportText TEXT (256)) LOAD DirImport FROM Dir.txt AS FORMATTED USING DirImportText 1 256
Tom Spaight wrote:
All: I'm looking for a way to import the names of files in a folder into a table. These file names are, not at all, associated with R-base files. I've tried several ways, but not successfully. Tom Spaight
