| Date: | Mon, 19 Aug 1996 17:12:16 GMT |
| Reply-To: | Ralph Brands <brinton@UNIXG.UBC.CA> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Ralph Brands <brinton@UNIXG.UBC.CA> |
| Organization: | University of British Columbia |
| Subject: | Re: File I/O in SAS 6.10 for Macs |
|---|
filename in 'HardDisk:test:data:test.dat';
data test; infile in;
input a $ b $ c d e;
Should work.
It can be a little slippery if you have things in the "Documents" folder
on the desktop, in which case
'HardDisk:Desktop Folder:Documents:test:data:test.dat'; works.
|