Could not bulk insert because file 'C:\csv\name.txt' could not be opened. Operating system error code 3(The system cannot find the path specified.).

I got the above error.

CREATE TABLE checkcsv
(
col1 varchar(100),
col2 varchar(100)
)

BULK INSERT dbo.checkcsv
FROM '\\IWAPPSVR\IWSQLDB\csv\name.txt'
WITH
(FIELDTERMINATOR = ',', ROWTERMINATOR = '/n')

I got the error and i couldnt solve this.solve the query please.

Hope yours reply.