Hello! I just started learning SAS by following The Little SAS Book using SAS Studio University edition. For one example on the book, I changed the inflie path to the location of the dat file on my laptop which is '/Users/Zee/Documents/Programming/SASUniversityEdition/myfolders/ToadJump.dat' the code is like this: * Create a SAS data set named toads; *Read the data file ToadJump.dat using list input; DATA toads; INFILE '/Users/Zee/Documents/Programming/SASUniversityEdition/myfolders/ToadJump.dat'; INPUT ToadName $ Weight Jump1 Jump2 Jump3; RUN; * Print the data to make sure the file was read correctly; PROC PRINT DATA = toads; TITLE 'SAS Data Set Toads'; RUN; One Erro was reported from Log: ERROR: The path /Users/Zee/Documents/Programming/SASUniversityEdition/myfolders/ToadJump.dat is not in the list of accessible paths when SAS is in the lockdown state. Then I checked my the VirtualBox shared folder location '/Users/Zee/Documents/Programming/SASUniversityEdition/myfolders' compare to the infile path, I don't know why it reports this erro. (INFILE '/Users/Zee/Documents/Programming/SASUniversityEdition/myfolders/ToadJump.dat') Please tell me where I got it wrong and how to fix it, really apprecaite your help, thanks!
... View more