<?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: Recently used file list in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45050#M9243</link>
    <description>How many programs do you access in two days?  In your preferences you can bump up the number shown to 30.</description>
    <pubDate>Tue, 07 Dec 2010 00:13:57 GMT</pubDate>
    <dc:creator>ArtC</dc:creator>
    <dc:date>2010-12-07T00:13:57Z</dc:date>
    <item>
      <title>Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45045#M9238</link>
      <description>How can I "extract" the Recently Used File List information from the SASUSER.PROFILE catalog?  And of course, the follow-up question would then be: Can I update the Recently Used File List information in the SASUSER.PROFILE catalog programmatically?&lt;BR /&gt;
&lt;BR /&gt;
Thank you.</description>
      <pubDate>Mon, 06 Dec 2010 16:47:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45045#M9238</guid>
      <dc:creator>advoss</dc:creator>
      <dc:date>2010-12-06T16:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45046#M9239</link>
      <description>I'd be a bit cautious when using the recently used file list.  Depending on how I open certain programs they may or may not appear on my list.  But if that's fine with you than have fun with it.</description>
      <pubDate>Mon, 06 Dec 2010 17:50:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45046#M9239</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2010-12-06T17:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45047#M9240</link>
      <description>I'm not sure if the following is showing the same thing as you are asking, but it might be worth a try:&lt;BR /&gt;
&lt;BR /&gt;
data thefiles; &lt;BR /&gt;
   set sashelp.vextfl; &lt;BR /&gt;
run; &lt;BR /&gt;
&lt;BR /&gt;
Art</description>
      <pubDate>Mon, 06 Dec 2010 19:03:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45047#M9240</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2010-12-06T19:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45048#M9241</link>
      <description>No, that shows me information about external files that I am reading.  I'm really interested in getting at the list of sas program files/scripts that I have used most recently.  Since I'm too lazy to keep good notes, some judicious programming might serve me a little better for what I was working on two days ago.</description>
      <pubDate>Mon, 06 Dec 2010 21:03:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45048#M9241</guid>
      <dc:creator>advoss</dc:creator>
      <dc:date>2010-12-06T21:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45049#M9242</link>
      <description>Such a feature/function in SAS does not exist.  It may or may not be a suitable enhancement item, however you will want to be very clear about how/where you want SAS to keep track of this information (interactive, batch, otherwise?).&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Mon, 06 Dec 2010 21:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45049#M9242</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-12-06T21:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45050#M9243</link>
      <description>How many programs do you access in two days?  In your preferences you can bump up the number shown to 30.</description>
      <pubDate>Tue, 07 Dec 2010 00:13:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45050#M9243</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2010-12-07T00:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45051#M9244</link>
      <description>If you're using Windows you might be able to filter out .sas files in the My Recent Documents Folder.&lt;BR /&gt;
&lt;BR /&gt;
The path is &lt;BR /&gt;
C:\Documents and Settings\username\Recent&lt;BR /&gt;
&lt;BR /&gt;
Get a program to read all entries in this folder and then filter for .sas is a possibility I think.  Not sure if it would actually work based on the fact that its shortcuts not the actual files. Or how it gets populated, ie open file from within SAS or from contents pane, or from double click in windows. &lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/24/707.html" target="_blank"&gt;http://support.sas.com/kb/24/707.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
I gave it a quick test try and the pipe part of the code didn't work for me, but I always have trouble with that kind of stuff.</description>
      <pubDate>Tue, 07 Dec 2010 01:00:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45051#M9244</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2010-12-07T01:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Recently used file list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45052#M9245</link>
      <description>Why not use Windows self-own search functionality.&lt;BR /&gt;
Start-&amp;gt; Search-&amp;gt;File-&amp;gt;File&lt;BR /&gt;
There is option can select the modified date of file, And there are also some another option can use.</description>
      <pubDate>Tue, 07 Dec 2010 03:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Recently-used-file-list/m-p/45052#M9245</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-12-07T03:36:06Z</dc:date>
    </item>
  </channel>
</rss>

