我已经看到了相反的方向。但是这个我抓不到。我正在尝试获取 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
但在控制台中它显示它正如我所期望的那样。想知道原因。。谢谢