Skip to content

Commit

Permalink
Commit from GitHub Actions (Build Documentation Site)
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinvanhunen committed Apr 5, 2024
1 parent 5b552b5 commit 913b4e5
Show file tree
Hide file tree
Showing 5 changed files with 917 additions and 131 deletions.
128 changes: 1 addition & 127 deletions cmdlets/Copy-PnPFolder.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,133 +84,7 @@
<h1 id="copy-pnpfolder">Copy-PnPFolder</h1>

<h2 id="synopsis">SYNOPSIS</h2>
<p>Copies a folder or file to a different location</p>
<h2 id="syntax">SYNTAX</h2>
<pre><code class="lang-powershell">Copy-PnPFolder [-SourceUrl] &lt;String&gt; [-TargetUrl] &lt;String&gt; [-Overwrite] [-Force] [-IgnoreVersionHistory] [-NoWait] [-Connection &lt;PnPConnection&gt;]

</code></pre>
<h2 id="description">DESCRIPTION</h2>
<p>Copies a folder or file to a different location. This location can be within the same document library, same site, same site collection or even to another site collection on the same tenant. Notice that if copying between sites or to a subsite you cannot specify a target filename, only a folder name.</p>
<p>Copying files and folders is bound to some restrictions. You can find more on it here: <a href="https://learn.microsoft.com/office365/servicedescriptions/sharepoint-online-service-description/sharepoint-online-limits#moving-and-copying-across-sites">https://learn.microsoft.com/office365/servicedescriptions/sharepoint-online-service-description/sharepoint-online-limits#moving-and-copying-across-sites</a></p>
<h2 id="examples">EXAMPLES</h2>
<h3 id="example-1">EXAMPLE 1</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;Shared Documents/MyProjectfiles&quot; -TargetUrl &quot;/sites/otherproject/Shared Documents&quot; -Overwrite
</code></pre>
<p>Copies a folder named MyProjectFiles in the document library called Documents located in the current site to the root folder of the library named Documents in the site collection otherproject. If a folder named MyProjectFiles already exists, it will overwrite it.</p>
<h3 id="example-2">EXAMPLE 2</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;/sites/project/Shared Documents/company.docx&quot; -TargetUrl &quot;/sites/otherproject/Shared Documents&quot;
</code></pre>
<p>Copies a file named company.docx located in a document library called Shared Documents in the site collection project to the Shared Documents library in the site collection otherproject. If a file named company.docx already exists, it won't perform the copy.</p>
<h3 id="example-3">EXAMPLE 3</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;Shared Documents/company.docx&quot; -TargetUrl &quot;/sites/otherproject/Shared Documents&quot; -IgnoreVersionHistory
</code></pre>
<p>Copies a file named company.docx located in a document library called Documents in the current site to the site collection otherproject. If a file named company.docx already exists, it won't perform the copy. Only the latest version of the file will be copied and its history will be discarded.</p>
<h3 id="example-4">EXAMPLE 4</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;/sites/project/Shared Documents/Archive&quot; -TargetUrl &quot;/sites/otherproject/Shared Documents&quot; -Overwrite
</code></pre>
<p>Copies a folder named Archive located in a document library called Shared Documents in the site collection project to the Shared Documents library in the site collection otherproject. If a folder named Archive already exists, it will overwrite it.</p>
<h3 id="example-5">EXAMPLE 5</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;Documents/company.docx&quot; -TargetUrl &quot;Documents/company2.docx&quot;
</code></pre>
<p>Copies a file named company.docx located in a document library called Documents to a new document named company2.docx in the same library.</p>
<h3 id="example-6">EXAMPLE 6</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;Shared Documents/company.docx&quot; -TargetUrl &quot;Shared Documents2/company.docx&quot;
</code></pre>
<p>Copies a file named company.docx located in a document library called Documents to a document library called Documents2 in the same site.</p>
<h3 id="example-7">EXAMPLE 7</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;Shared DocuDocuments/company.docx&quot; -TargetUrl &quot;Subsite/Shared Documents&quot;
</code></pre>
<p>Copies a file named company.docx located in a document library called Documents to the document library named Documents in a subsite named Subsite keeping the file name.</p>
<h3 id="example-8">EXAMPLE 8</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;Shared Documents/company.docx&quot; -TargetUrl &quot;/sites/otherproject/Shared Documents&quot; -Overwrite
</code></pre>
<p>Copies a file named company.docx located in a document library called Documents in the current site to the site collection otherproject. If a file named company.docx already exists, it will still perform the copy and replace the original company.docx file.</p>
<h3 id="example-9">EXAMPLE 9</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;Shared Documents/MyDocs&quot; -TargetUrl &quot;/sites/otherproject/Documents&quot; -Overwrite
</code></pre>
<p>Copies a folder named MyDocs in the document library called Documents located in the current site to the site collection otherproject. If the MyDocs folder exist it will copy into it, if not it will be created.</p>
<h3 id="example-10">EXAMPLE 10</h3>
<pre><code class="lang-powershell">Copy-PnPFolder -SourceUrl &quot;SubSite1/Documents/company.docx&quot; -TargetUrl &quot;SubSite2/Documents&quot;
</code></pre>
<p>Copies a file named company.docx in the library named Documents in SubSite1 to the library named Documents in SubSite2.</p>
<h3 id="example-11">EXAMPLE 11</h3>
<pre><code class="lang-powershell">$job = Copy-PnPFolder -SourceUrl &quot;Shared Documents/company.docx&quot; -TargetUrl &quot;SubSite2/Shared Documents&quot; -NoWait
$jobStatus = Receive-PnPCopyMoveJobStatus -Job $result
if($jobStatus.JobState == 0)
{
Write-Host &quot;Job finished&quot;
}
</code></pre>
<p>Copies a file named company.docx from the current document library to the documents library in SubSite2. It will not wait for the action to return but returns job information instead. The Receive-PnPCopyMoveJobStatus cmdlet will return the job status.</p>
<h2 id="parameters">PARAMETERS</h2>
<h3 id="-force">-Force</h3>
<p>If provided, no confirmation will be requested and the action will be performed</p>
<pre><code class="lang-yaml">Type: SwitchParameter
Parameter Sets: (All)

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
</code></pre>
<h3 id="-ignoreversionhistory">-IgnoreVersionHistory</h3>
<p>If provided, only the latest version of the document will be copied and its history will be discarded. If not provided, all historical versions will be copied.</p>
<pre><code class="lang-yaml">Type: SwitchParameter
Parameter Sets: (All)

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
</code></pre>
<h3 id="-overwrite">-Overwrite</h3>
<p>If provided, if a file already exists at the TargetUrl, it will be overwritten. If omitted, the copy operation will be canceled if the file already exists at the TargetUrl location.</p>
<pre><code class="lang-yaml">Type: SwitchParameter
Parameter Sets: (All)

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
</code></pre>
<h3 id="-sourceurl">-SourceUrl</h3>
<p>Site or server relative URL specifying the file or folder to copy. Must include the file name if it is a file or the entire path to the folder if it is a folder.</p>
<pre><code class="lang-yaml">Type: String
Parameter Sets: (All)
Aliases: SiteRelativeUrl, ServerRelativeUrl

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
</code></pre>
<h3 id="-targeturl">-TargetUrl</h3>
<p>Site or server relative URL where to copy the file or folder to. Must not include the file name.</p>
<pre><code class="lang-yaml">Type: String
Parameter Sets: (All)
Aliases: TargetServerRelativeLibrary

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
</code></pre>
<h3 id="-nowait">-NoWait</h3>
<p>If specified the task will return immediately after creating the copy job. The cmdlet will return a job object which can be used with Receive-PnPCopyMoveJobStatus to retrieve the status of the job.</p>
<pre><code class="lang-yaml">Type: SwitchParameter
Parameter Sets: (All)

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
</code></pre>
<p>This is an alias for <a href="Copy-PnPFile.html">Copy-PnPFile</a>.</p>
<h2 id="related-links">RELATED LINKS</h2>
<p><a href="https://aka.ms/m365pnp">Microsoft 365 Patterns and Practices</a></p>

Expand Down
Loading

0 comments on commit 913b4e5

Please sign in to comment.