Hi all, I am new to Visual FoxPro and I am reviewing someone's code right now. My issue is, I saw the following code and not quite sure if this is the piece to import data into a VFP table. Given the &gcDirFileName is the directory path where the text file located, does it mean the following code read line by line from the text file and import into the LdCont table? If so, how does the program know if it is delimited or another format? Please help!!
Select LdCont
use
use ldcont exclu
Append From &gcDirFileName TYPE SDF
GOTO TOP
BROWSE
pack
Select LdCont
use
use ldcont exclu
Append From &gcDirFileName TYPE SDF
GOTO TOP
BROWSE
pack