extrai dados da biblioteca de documentos do SharePoint para CSV usando o powershell

0

Estou tentando extrair dados da biblioteca de documentos do SharePoint para o arquivo CSV usando o powershell. Estou recebendo dados corretos no arquivo CSv. Mas uma coluna, ou seja, "Descrição" tem mais dados de texto sobre ele.Assim, quando executar o script, os dados que vem chegando em outras linhas (a sua não vem em uma linha). Para referência, havia um script escrito abaixo e meu arquivo abaixo.

Script Powershell

$web = get-spweb "Site Url"
$caseLib = $web.lists | where {$_.title -eq "Document Library"}
$query=new-object Microsoft.SharePoint.SPQuery
$query.ViewFields = ""
$query.RowLimit=500000

do {
    $caseLibItems=$caseLib.GetItems($query)
    $query.ListItemCollectionPosition = $caseLibItems.ListItemCollectionPosition
    $listItemsTotal = $caseLibItems.Count
    $x = 0

    for($x=0;$x -lt $listItemsTotal; $x++) {
        $Description = $caseLibItems[$x]["DocumentSetDescription"]
        $str = ""

        if('$Description' -ne $null) {
            $str = $caseLibItems[$x]["LinkFilename"].ToString() + '}' + $Description
        } else {
            $str = $caseLibItems[$x]["LinkFilename"].ToString() 
        }

    Write-Output $str | Out-File "Path"
    import-csv Data.csv -delimiter "}" -Header "Number", "Description" | export-csv -NoTypeInformation -Path "C:\csvfile1.csv"
    }

} while ($query.ListItemCollectionPosition -ne $null)

Write-Host "Exiting"

Arquivo de saída para referência

Name Description
ABCD-123 This file imported data of system.
XYZA-231 Data migrated to next session
file need to upload on another server.
System update required.
CDFC-231 New file need to create on system
XYZA-984 system creating problem.
Source code error. update new file
HGFC-453 Maintenance updated file.

Saída que eu quero abaixo

Name Description
ABCD-123 This file imported data of system.
XYZA-231 Data migrated to next session.file need to upload on another server. System update required.
CDFC-231 New file need to create on system
XYZA-984 system creating problem. Source code error. update new file.
HGFC-453 Maintenance updated file.

Espero que vocês entendam minha exigência. Quero que os dados da coluna de descrição sejam necessários em apenas uma linha.

    
por murali kuruva 27.09.2018 / 08:18

1 resposta

1

Substitua as quebras de linha por espaços antes de usar $ Description.

$web = get-spweb $siteUrl
$caseLib = $web.lists | where {$_.title -eq $listTitle}
$query=new-object Microsoft.SharePoint.SPQuery 
$query.ViewFields = "<FieldRef Name='LinkFilename'/><FieldRef Name='DocumentSetDescription'/>"
$query.RowLimit=500000

Write-Output "Header}Description" | Out-File "temp.csv" 

do
{
    $caseLibItems=$caseLib.GetItems($query)
    $query.ListItemCollectionPosition=$caseLibItems.ListItemCollectionPosition
    $listItemsTotal = $caseLibItems.Count
    $x = 0
    for($x=0;$x -lt $listItemsTotal; $x++)
    {
        $Description = $caseLibItems[$x]["DocumentSetDescription"]
        $str = ""
        if('$Description' -ne $null)
        {
            ### Insert the line below to remove line breaks ###############
            $Description = $Description -replace "'n"," " -replace "'r"," "
            ###############################################################
            $str = $caseLibItems[$x]["LinkFilename"].ToString() + '}' + $Description
        }
        else
        {
            $str = $caseLibItems[$x]["LinkFilename"].ToString()
        }
        Write-Output $str | Out-File -Append "temp.csv" 
    }
} while ($query.ListItemCollectionPosition -ne $null)

import-csv temp.csv -delimiter "}" | export-csv -NoTypeInformation  -Path "result.csv"

Write-Host "Exiting"

Resposta compartilhada por Piero.

    
por 28.09.2018 / 06:08