<?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 Saving exporting path in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564036#M33912</link>
    <description>&lt;P&gt;I have to export a huge number of html's files to the same directory. So far I have had to select the directory every time I have exported the file. I would like to know if it is possible to fix this path or, otherwise, if there is any option SAS to remember the last selected directory.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jun 2019 11:23:41 GMT</pubDate>
    <dc:creator>anab</dc:creator>
    <dc:date>2019-06-06T11:23:41Z</dc:date>
    <item>
      <title>Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564036#M33912</link>
      <description>&lt;P&gt;I have to export a huge number of html's files to the same directory. So far I have had to select the directory every time I have exported the file. I would like to know if it is possible to fix this path or, otherwise, if there is any option SAS to remember the last selected directory.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 11:23:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564036#M33912</guid>
      <dc:creator>anab</dc:creator>
      <dc:date>2019-06-06T11:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564099#M33917</link>
      <description>&lt;P&gt;Should be doable, but more information is needed. How are these HTML files created?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have a code segment that demonstrates creating one and saving it to a directory?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 14:07:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564099#M33917</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2019-06-06T14:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564141#M33919</link>
      <description>How are you exporting these files? If you're doing it one by one that's definitely inefficient. You can usually set the path to be somewhere and they'll go there by default or use FCOPY() or Copy task to move them at once.</description>
      <pubDate>Thu, 06 Jun 2019 14:59:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564141#M33919</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-06T14:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564373#M33927</link>
      <description>&lt;P&gt;The HTML are created from a summary table, as you can see in the image I attach. Once it is created, I export it as a part of the proyect to another html, located in the directory I want to have all the html files. This directory is want I want to fix in order not to write or copy it everytime.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the answer,&lt;/P&gt;&lt;P&gt;Ana B.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 06:21:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564373#M33927</guid>
      <dc:creator>anab</dc:creator>
      <dc:date>2019-06-07T06:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564376#M33928</link>
      <description>&lt;P&gt;Yes, until now I have being doing one by one, but now I have many htmls to export and, indeed, it is so inefficient.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you say, what I want to set the path to somewhere, but I don't know how to do it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the answer.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 06:25:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564376#M33928</guid>
      <dc:creator>anab</dc:creator>
      <dc:date>2019-06-07T06:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564487#M33930</link>
      <description>Yeah, add in a step to each program that outputs the files directly to a folder, you may need a program or custom task. Sorry, I don't have EG to play around with anymore.&lt;BR /&gt;&lt;BR /&gt;ods html5 file='demo.html' path='C:\_localdata\temp' style=meadow;&lt;BR /&gt;&lt;BR /&gt;proc print data=sashelp.class;&lt;BR /&gt;&lt;BR /&gt;ods html5 close;&lt;BR /&gt;&lt;BR /&gt;That's an example of how a program could be written. Then you could add it to each step or add one big program to export all tables at once.</description>
      <pubDate>Fri, 07 Jun 2019 15:05:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564487#M33930</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-07T15:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564581#M33939</link>
      <description>&lt;P&gt;My apologies, I've played around with it and based on how you've structured your project, I can't find a solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fortunately, a lot of SAS employees monitor these posts, and I know several who have forgotten more about html than I ever knew.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope you find a solution!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Tom&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 21:30:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564581#M33939</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2019-06-07T21:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Saving exporting path</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564582#M33940</link>
      <description>You can also open a ticket directly with SAS Support and they can help you navigate this.</description>
      <pubDate>Fri, 07 Jun 2019 21:33:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Saving-exporting-path/m-p/564582#M33940</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-07T21:33:52Z</dc:date>
    </item>
  </channel>
</rss>

