我已經看到了相反的情況。但這一個我無法捕捉。我正在嘗試獲取Web資源路徑的一部分並將其與本地路徑結合使用。 讓我再解釋一下。將「/」更改爲「」[C#]
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
但在控制檯中顯示它,因爲我期望它。 我想知道對於 感謝的原因..
Windows支持格式爲「C:\ Users」和「C:/ Users」的路徑名。根本不需要轉換。 –