Hi, I installed virtualbox in my Mac to create a virtual machine. Then I installed SAS 9.4 in my virtual machine. I have created a shared folder where virtual machine can share the files in my host computer (Mac) The directory of shared folder (I see from my virtual machine : \\VBOXSVR\Documents. I put my SAS data file (food.dat) in this shared folder I ran the following program DATA one; INFILE "\\VBOXSVR\Documents\food.dat"; RUN; Then Error message happened physical file does not exist \\VBOXSVR\Documents\food.dat. How to resolve the issue?
... View more