This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data import_all; | |
*make sure variables to store file name are long enough; | |
length filename txt_file_name $256; | |
*keep file name from record to record; | |
retain txt_file_name; | |
*Use wildcard in input; | |
infile "Path\*.txt" eov=eov filename=filename truncover; |