Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリはサーバーにログインしており、ユーザー資格情報に基づくデフォルトのディレクトリは /dir1/dir2/dir3/ に配置されています。
したがって、dir3 にファイルを入れたり取得したりするのに問題はありませんが、ディレクトリを親である dir2 に変更するにはどうすればよいでしょうか?
パスでは、../ の代わりに %2f を使用します。たとえば、
FtpWebRequest.Create("ftp://myftp.com/../parent") as FtpWebRequest
これを行う
FtpWebRequest.Create("ftp://myftp.com/%2fparent") as FtpWebRequest