在C#中,例如此功能,您可以使用@"stringpath"
代替"stringpath"
我为什么要在前面添加@?我没有使用@ ??
得到相同的结果示例:
UploadFileMethod(@"C:\test.txt", @"http://site.com/bla/file.txt");
public static bool UploadFileToDocumentLibrary(string sourceFilePath, string targetDocumentLibraryPath)
{
//stuff here
}
答案 0 :(得分:1)
它改变了字符串的转义行为。使用@
时,我们无需转义\
字符。
路径应该是这样的:
"C:\\abc.txt"