<?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: Move directory that contains excel files from one location to another 9.3 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787426#M251602</link>
    <description>&lt;P&gt;What OS does your SAS session run on? The required OS command and syntax to move the files depends on the OS. Your SAS session will also need to be able to access OS commands. You can check the required SAS option like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option = xcmd;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 26 Dec 2021 22:22:47 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2021-12-26T22:22:47Z</dc:date>
    <item>
      <title>Move directory that contains excel files from one location to another 9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787417#M251599</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to move directory as is that contains excel files from one location to another. Which way is the most appropriate?&lt;/P&gt;&lt;P&gt;I have a SAS 9.3 version.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Sun, 26 Dec 2021 19:13:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787417#M251599</guid>
      <dc:creator>AlexeyS</dc:creator>
      <dc:date>2021-12-26T19:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Move directory that contains excel files from one location to another 9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787425#M251601</link>
      <description>&lt;P&gt;You can try this. It works for me&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options noxwait;
%let source_path= C:\Users\PNG\Documents;
%let file_name= test.xlsx;
%let destination_path=C:\users\png;
X move &amp;amp;source_path\&amp;amp;file_name &amp;amp;destination_path;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;EM&gt;Please give me a like if you find it useful.Thanks!&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Dec 2021 21:31:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787425#M251601</guid>
      <dc:creator>kelxxx</dc:creator>
      <dc:date>2021-12-26T21:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Move directory that contains excel files from one location to another 9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787426#M251602</link>
      <description>&lt;P&gt;What OS does your SAS session run on? The required OS command and syntax to move the files depends on the OS. Your SAS session will also need to be able to access OS commands. You can check the required SAS option like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option = xcmd;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 26 Dec 2021 22:22:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787426#M251602</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-12-26T22:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Move directory that contains excel files from one location to another 9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787448#M251612</link>
      <description>&lt;P&gt;The best approach would be to do it at the operating system level.&lt;BR /&gt;If the source and destination locations are on different computers, then ftp clients like filezilla would be helpful.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Dec 2021 12:35:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787448#M251612</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2021-12-27T12:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Move directory that contains excel files from one location to another 9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787508#M251643</link>
      <description>&lt;P&gt;If you don't have XCMD enabled you can use this macro to recursively copy a directory from one place to another:&amp;nbsp;&amp;nbsp;&lt;A href="https://core.sasjs.io/mp__copyfolder_8sas.html" target="_blank"&gt;https://core.sasjs.io/mp__copyfolder_8sas.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Dec 2021 09:25:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-directory-that-contains-excel-files-from-one-location-to/m-p/787508#M251643</guid>
      <dc:creator>AllanBowe</dc:creator>
      <dc:date>2021-12-28T09:25:39Z</dc:date>
    </item>
  </channel>
</rss>

