BookmarkSubscribeRSS Feed
ElisaT
Calcite | Level 5

Hello,

I'm currently trying to access an external file .dat file on my MAC using INFILE, and it keeps coming up as the 'physical file does not exist'. Below is my syntax. I've put it in my Users folder, my desktop, documents, etc.  I've tried two ways:

infile '\\client\c$\pilot.dat';

and

infile '//users/bebe/pilot.dat';

I'm not sure what the correct syntax path is. Having a lot of trouble trying to do this without using datalines. I've also tried csv files as well that definitely didn't work.

3 REPLIES 3
Kurt_Bremser
Super User

First thing: Underneath the hood of your Mac works a genuine UNIX system, so forget to use the backslash as anything else than a VERY special character.

UNIX's have no drive designators, just one filesystem starting at root; everything is mounted somewhere in there.

Your path to the file should start with a single slash (aka root), and directories need to be separated with slashes. Everything is case sensitive, so if your file is stored as Pilot.dat, pilot.dat won't find it.

naniraki
Calcite | Level 5
180
 
ERROR 180-322: Statement is not valid or it is used out of proper order.
 
57 infile '/Users/Nani/Documents/SASUniversityEdition/Myfolders/Workbook1.txt';
______
180
 
ERROR 180-322: Statement is not valid or it is used out of proper order.
 
58 input name $ Check $ age;
_____
180
 
ERROR 180-322: Statement is not valid or it is used out of proper order.
 
59 run;
60
61 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
73
LinusH
Tourmaline | Level 20
Excuse me @naniraki, but what are you doing?
This thread is 1.5 years old.
If you have an issue, create a new topic and describe in words what you are trying to do and what you are expecting, with a FULL log.
Data never sleeps

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1417 views
  • 0 likes
  • 4 in conversation