<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Copy files to external server in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/copy-files-to-external-server/m-p/102352#M29264</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;In addition to the given answers, to copy files to external server or filesystem (without using JS API) I'll take into consideration:&lt;/P&gt;&lt;P&gt;&amp;nbsp;- If you have (very) few documents to download, you can use unload zip action in Share, and then copy files to the external server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;- You can use webdav to mount Alfresco folders and then copy files to the external server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;- You can also use Bulk Export Tool addon in Alfresco:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/vprince1/alfresco-bulk-export" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/vprince1/alfresco-bulk-export&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;- Also, you can use some REST API based artifact like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://github.com/zylklab/alfresco-export-scripts#downloadsitesh" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/zylklab/alfresco-export-scripts#downloadsitesh&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;--C.&lt;/P&gt;</description>
    <pubDate>Sat, 22 Aug 2020 20:53:04 GMT</pubDate>
    <dc:creator>cesarista</dc:creator>
    <dc:date>2020-08-22T20:53:04Z</dc:date>
    <item>
      <title>Copy files to external server</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/copy-files-to-external-server/m-p/102350#M29262</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I need to copy files from folders in Alfresco to an external server. i want to do this with a script in JS. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyone have any idea how to set the javascript to make the copy? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you very much for helping&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 13:24:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/copy-files-to-external-server/m-p/102350#M29262</guid>
      <dc:creator>YariMarchisone</dc:creator>
      <dc:date>2020-08-18T13:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Copy files to external server</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/copy-files-to-external-server/m-p/102351#M29263</link>
      <description>&lt;P&gt;If you want to write JavaScript that will copy files from Alfresco to a file system, you can use the &lt;A href="https://github.com/Alfresco/alfresco-js-api" target="_self" rel="nofollow noopener noreferrer"&gt;Alfresco JavaScript API&lt;/A&gt; and run it using &lt;A href="https://nodejs.org" target="_self" rel="nofollow noopener noreferrer"&gt;Node&lt;/A&gt;. The API is a client-side library that calls the &lt;A href="https://api-explorer.alfresco.com/api-explorer/" target="_self" rel="nofollow noopener noreferrer"&gt;Alfresco Public REST API&lt;/A&gt;. If you decide you don't want to use the JavaScript client you can also just call that REST API directly.&lt;/P&gt;
&lt;P&gt;The GitHub project for the Alfresco JavaScript API has plenty of documentation and examples.&lt;/P&gt;
&lt;P&gt;The Nodes API has a &lt;A href="https://github.com/Alfresco/alfresco-js-api/blob/develop/src/api/content-rest-api/docs/NodesApi.md#getNodeContent" target="_self" rel="nofollow noopener noreferrer"&gt;getNodeContent&lt;/A&gt; call you can run to get the file.&lt;/P&gt;
&lt;P&gt;Hope that helps,&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 16:23:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/copy-files-to-external-server/m-p/102351#M29263</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2020-08-21T16:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Copy files to external server</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/copy-files-to-external-server/m-p/102352#M29264</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;In addition to the given answers, to copy files to external server or filesystem (without using JS API) I'll take into consideration:&lt;/P&gt;&lt;P&gt;&amp;nbsp;- If you have (very) few documents to download, you can use unload zip action in Share, and then copy files to the external server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;- You can use webdav to mount Alfresco folders and then copy files to the external server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;- You can also use Bulk Export Tool addon in Alfresco:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/vprince1/alfresco-bulk-export" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/vprince1/alfresco-bulk-export&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;- Also, you can use some REST API based artifact like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://github.com/zylklab/alfresco-export-scripts#downloadsitesh" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/zylklab/alfresco-export-scripts#downloadsitesh&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;--C.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 20:53:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/copy-files-to-external-server/m-p/102352#M29264</guid>
      <dc:creator>cesarista</dc:creator>
      <dc:date>2020-08-22T20:53:04Z</dc:date>
    </item>
  </channel>
</rss>

