1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 61 62 data emp_test10; 63 infile '/folders/myfolders/Test/Emp_test.txt' 64 dlm=','; 65 input emp_no emp_name $; 66 run; ERROR: Physical file does not exist, /folders/myfolders/Test/Emp_test.txt. NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.EMP_TEST10 may be incomplete. When this step was stopped there were 0 observations and 2 variables. WARNING: Data set WORK.EMP_TEST10 was not replaced because this step was stopped. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 67 proc print data=emp_test10; 68 run; NOTE: No observations in data set WORK.EMP_TEST10. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 69 70 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 83