我正在嘗試上傳670MB大小的視頻。上傳時,我收到錯誤。上傳大視頻文件時出現
404 - File or directory not found.
The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.
我使用的是以下代碼。
byte[] myData = new Byte[nFileLen];
myFile.InputStream.Read(myData, 0, nFileLen);
System.IO.FileStream newFile
= new System.IO.FileStream(Server.MapPath(sSavePath + sFilename),
System.IO.FileMode.Create);
newFile.Write(myData, 0, myData.Length);
newFile.Close();
EDIT
它是在僅內部網網絡被上傳。
感謝您的回覆。其實問題是服務器不允許上傳大文件。當我在我的機器上創建虛擬目錄並上傳,然後允許我。 – Pankaj 2011-05-19 12:50:15