Yes I am sure I am using the right path as I right click the folder go into properties to copy the file path from there. As suggested in one of the answers to create the folder in C drive: and then define the path by going into the properties of the folder and copied the file path from there. Screenshot attached. Then I have tried the following code: data cowdiet; infile "\\C:\SASUniversityEdition\MyFolders\cowdiet.txt" firstobs=2; input nitrogen $ barley $ intake; run; Same error: 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 72 73 data cowdiet; 74 infile "\\C:\SASUniversityEdition\MyFolders\cowdiet.txt" firstobs=2; 75 input nitrogen $ barley $ intake; 76 run; ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/\\C:\SASUniversityEdition\MyFolders\cowdiet.txt. NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.COWDIET may be incomplete. When this step was stopped there were 0 observations and 3 variables. WARNING: Data set WORK.COWDIET was not replaced because this step was stopped. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 77 78 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; I have also tried " data cowdiet; infile "\\C:\SASUniversityEdition\Folders\MyFolders\cowdiet.txt" firstobs=2; input nitrogen $ barley $ intake; run; but I am getting the same error.
... View more