我必須從網址文件夾中讀取文件...所以使用下面的代碼...我沒有得到文件列表...如何從C#中的網址文件夾讀取/驗證文件#
string pathUser = "http:/mentpc.blob.core.windows.net/cents/201503";
string pathDownload = Path.Combine(pathUser, @"20150302110215315197/20150401100536436792");
WebClient client = new WebClient();
Stream stream = client.OpenRead(pathDownload);
StreamReader reader = new StreamReader(stream);
但我收到異常說===>遠程服務器返回錯誤:(404)找不到。
請幫我
你需要從第一眼看起來像'/'的末尾添加'http:/'應該是'http://' – MethodMan
這兩個文件或一個文件,你正試圖獲取您的示例代碼20150302110215315197/20150401100536436792? –
20150302110215315197/20150401100536436792?............... thease是子文件夾 –