A family of Microsoft relational database management systems designed for ease of use.
The syntax for running a saved import is
DoCmd.RunSavedImportExport "NameOfSavedImport"
This will use the path and file name stored with the saved import; you cannot specify those.
Alternatively, you can use DoCmd.TransferText. This will let you specify the path and file name:
DoCmd.TransferText TransferType:=acImportDelim, SpecificationName:="MySpecification", _
TableName:="MyTable", FileName:="C:\Data\MyTextFile.txt", HasFieldNames:=True
Instead of the literal quoted strings in this instruction, you can use variables or expressions.