2012-11-02 53 views
-6

可能重複:
@(at) sign in file path/string使用@通過字符串來定位文件

在C#例如這個功能,你可以使用@"stringpath"代替"stringpath"

爲什麼我要補充一個@在前面?我沒有使用@獲得相同的結果

例如:

UploadFileMethod(@"C:\test.txt", @"http://site.com/bla/file.txt"); 

public static bool UploadFileToDocumentLibrary(string sourceFilePath, string targetDocumentLibraryPath) 

{ 
//stuff here 
} 
+2

閱讀DOCO!說真的,如果你真的想的話,你可以在幾分鐘內找到自己。 –

+0

@表示文字字符串,所以不需要轉義特殊字符 –

+0

這裏http://stackoverflow.com/questions/5179389/at-sign-in-file-path-string –

回答

1

它改變琴絃的逃逸行爲。當使用@時,我們不需要轉義\字符。

由於路徑應該是這樣:

"C:\\abc.txt"

相關問題