无法将大型(> 50MB)文件上载到SharePoint 2010文档库

时间:2013-08-05 11:11:18

标签: iis-7 sharepoint-2010 document-library sharepointdocumentlibrary

我正在尝试将大文件上传到文档库,但仅在几秒钟后就失败了。上传单个文档无提示失败,上传多个只显示失败的消息。我已将Web应用程序的文件大小限制调高为500MB,并将IIS请求长度调整为相同(来自this blog),并增加了IIS超时以获得良好的衡量标准。我错过了其他大小的上限吗?

更新我尝试了几个不同大小的文件,任何50MB或以上的文件都失败了,所以我假设某个地方仍然设置为webapp默认值。

更新2 刚尝试使用以下PowerShell进行上传:

$web = Get-SPWeb http://{site address}
$folder = $web.GetFolder("Site Documents")
$file = Get-Item "C:\mydoc.txt" // ~ 150MB
$folder.Files.Add("SiteDocuments/mydoc.txt", $file.OpenRead(), $false)

并获得此例外:

Exception calling "Add" with "3" argument(s): "<nativehr>0x80070003</nativehr><nativestack></nativestack>There is no file with URL 'http://{site address}/SiteDocuments/mydoc.txt' in this Web."

这让我很奇怪,因为文件在上传之前不会存在?注:虽然文档库的名称为Site Documents,但它具有URL SiteDocuments。不知道为什么......

2 个答案:

答案 0 :(得分:0)

您确定更新了正确的网络应用吗?文件类型是否被服务器阻止?您的内容数据库中是否有足够的空间?之后我会检查ULS日志,看看是否还有其他错误,因为它似乎达到了你需要更新的3个点。

答案 1 :(得分:0)

用于上传大文件,您可以使用PUT方法而不是使用其他方式上传文档。 通过使用put方法,您将直接将文件保存到内容数据库中。见下面的例子

注意:下面代码的缺点是您无法捕获负责直接上传的对象,换句话说,您无法直接更新上传文档的其他自定义属性。

public static bool UploadFileToDocumentLibrary(string sourceFilePath, string targetDocumentLibraryPath)
    {
        //Flag to indicate whether file was uploaded successfuly or not
        bool isUploaded = true;
        try
        {
            // Create a PUT Web request to upload the file.
            WebRequest request = WebRequest.Create(targetDocumentLibraryPath);

            //Set credentials of the current security context
            request.Credentials = CredentialCache.DefaultCredentials;
            request.Method = “PUT”;

            // Create buffer to transfer file
            byte[] fileBuffer = new byte[1024];

            // Write the contents of the local file to the request stream.
            using (Stream stream = request.GetRequestStream())
            {
                //Load the content from local file to stream
                using (FileStream fsWorkbook = File.Open(sourceFilePath, FileMode.Open, FileAccess.Read))
                {
                    //Get the start point
                    int startBuffer = fsWorkbook.Read(fileBuffer, 0, fileBuffer.Length);
                    for (int i = startBuffer; i > 0; i = fsWorkbook.Read(fileBuffer, 0, fileBuffer.Length))
                    {
                        stream.Write(fileBuffer, 0, i);
                    }

                }
            }

            // Perform the PUT request
            WebResponse response = request.GetResponse();

            //Close response
            response.Close();
        }
        catch (Exception ex)
        {
            //Set the flag to indiacte failure in uploading
            isUploaded = false;
        }

        //Return the final upload status
        return isUploaded;
    }

以下是调用此方法的示例

UploadFileToDocumentLibrary(@”C:\test.txt”, @”http://home-vs/Shared Documents/textfile.pdf”);