1
當我閱讀文件,這樣的錯誤而讀取文件
var fciNewFileFromComputer = new SP.FileCreationInformation();
fciNewFileFromComputer.Content = System.IO.File.ReadAllBytes("C:\\Documents and Settings\\User1020\\Desktop\\asd.txt");
我能夠讀取文件,但是當我嘗試這樣
fciNewFileFromComputer.Content = System.IO.File.ReadAllBytes("u4vmebirsdev01//ReportsEBISSRS//ActiveDirectoryTest.rdl");
我收到錯誤
網址格式不支持
我很無能,該怎麼辦?
它可能是在雙斜槓'//'在那裏試圖解釋爲URL? – sstn
@sstn我應該刪除/ /斜槓? – Chris
如果這應該表示文件共享路徑(即UNC),則它需要位於前面的'\\\\'。 –