Using the following code to import csv file in windows 10., Using University edition.
IMPORT DATAFILE="C:\Users\Vikram\Documents\Personal\Alabs\SAS\Week1\Class 1\Car_sales.csv"
OUT=WORK.MYCSV
DBMS=CSV
REPLACE;
Getting the error message -
ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/C:\Users\Vikram\Documents\Personal\Alabs\SAS\Week1\Class
1\Car_sales.csv.
ERROR: Import unsuccessful. See SAS Log for details.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE IMPORT used (Total process time):
real time 0.13 seconds
cpu time 0.12 seconds
79
80 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
93