使用@通过字符串定位文件

时间:2012-11-02 10:01:20

标签: c# performance

  

可能重复:
  @(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
}

1 个答案:

答案 0 :(得分:1)

它改变了字符串的转义行为。使用@时,我们无需转义\字符。

路径应该是这样的:

"C:\\abc.txt"