Powershell中的Sharepoint CSOM OpenBinaryDirect,找不到方法

时间:2013-07-02 17:33:17

标签: sharepoint powershell csom

我正在尝试使用PowerShell和Sharepoint 2013 CSOM将一个项目的附件复制到另一个列表中的新项目。我已经能够为新项目成功生成附件文件夹,所以理论上我需要做的就是将文件从旧附件文件夹移动到新文件夹。 CopyTo和MoveTo似乎只能用于移动列表中的文件,因此我想将OpenBinaryDirect和SaveBinaryDirect与站点上下文一起使用。但是,在powershell中,调用这些方法之一会导致以下错误:方法调用失败,因为[System.RuntimeType]不包含名为“OpenBinaryDirect”的方法。

$attachments = $item.AttachmentFiles
if($attachments.Count -gt 0)
{
    #Creates a temporary attachment for the new item to genereate a folder, will be deleted later.
    $attCI = New-Object Microsoft.SharePoint.Client.AttachmentCreationInformation
    $attCI.FileName = "TempAttach"
    $enc = New-Object System.Text.ASCIIEncoding
    $buffer = [byte[]] $enc.GetBytes("Temp attachment contents")
    $memStream = New-Object System.IO.MemoryStream (,$buffer)
    $attCI.contentStream = $memStream
    $newItem.AttachmentFiles.Add($attCI)

    $ctx.load($newItem)
    $sourceIN = $sourceList.Title
    $archIN = $archList.Title
    $sourcePath = "/" + "Lists/$sourceIN/Attachments/" + $item.Id
    $archPath = "/" + "Lists/$archIN/Attachments/" + $newItem.Id
    $sFolder = $web.GetFolderByServerRelativeUrl($sourcePath)
    $aFolder = $web.GetFolderByServerRelativeURL($archPath)
    $ctx.load($sFolder)
    $ctx.load($aFolder)
    $ctx.ExecuteQuery()
    $sFiles = $sFolder.Files
    $aFiles = $aFolder.Files
    $ctx.load($sFiles)
    $ctx.load($aFiles)
    $ctx.ExecuteQuery()
    foreach($file in $sFiles)
    {
        $fileInfo = [Microsoft.SharePoint.Client.File].OpenBinaryDirect($ctx, $file.ServerRelativeUrl)
        [Microsoft.Sharepoint.Client.File].SaveBinaryDirect($ctx, $archPath, $fileInfo.Stream, $true)
    }
}
$ctx.ExecuteQuery()

使用powershell + CSOM获取BinaryDirect方法或使用PowerShell + CSOM复制附件的通用策略方面的任何帮助都将非常感激。

1 个答案:

答案 0 :(得分:1)

调用静态方法的语法错误。你想要[Microsoft.SharePoint.Client.File]::OpenBinaryDirect( ... )

请注意类型名称和方法名称之间的双冒号语法::SaveBinaryDirect调用相同。