私はすでにその逆を見てきました。しかし、これは私が捕まえることができません。Web resourcePath の一部を取得し、それをローカル パスと結合しようとしています。もう少し説明させてください。
public string GetLocalPath(string URI, string webResourcePath, string folderWatchPath) // get the folderwatcher path to work in the local folder
{
string changedPath = webResourcePath.Replace(URI, "");
string localPathTemp = folderWatchPath + changedPath;
string localPath = localPathTemp.Replace(@"/",@"\");
return localPath;
}
しかし、私がこれを行うと、結果は次のようになります
C:\\Users
しかし、私が持ちたいのは
C:\Users
「\\」ではありませんが、私のデバッグでは次のようC:\\Users
に表示されますが、コンソールでは期待どおりに表示されます。その理由が知りたいです ありがとうございます。