FtpWebRequest returns error 550 File unavailable

前端 未结 15 2282
醉梦人生
醉梦人生 2020-11-30 09:41

I have created a small windows forms application to upload the file to one of our client\'s ftp site. But the problem that I\'m having is that when I run this application on

15条回答
  •  日久生厌
    2020-11-30 10:17

    I was having the same problem, when i compared with the ftpuri and User Name Path it is resolved When I create ftp access i have chose the path as /directory name

    in the ftpuri when i included the directory name it gave the error and when i removed the directory name it is resolved.

    ftpuri with error

    "ftp://www.example.com/Project/yourfilename.ds"

    ftpuri resolved

    "ftp://www.example.com/yourfilename.ds"

    ftp access folder "/Project"

提交回复
热议问题