<?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: SAS E miner projects list in a phyisical folder in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673434#M19580</link>
    <description>&lt;P&gt;In order to scan a physical folder, you have to know the complete path to it. That is essential.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you know that,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;has a very nice method to traverse a whole directory tree in a single data step.&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jul 2020 13:59:10 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2020-07-30T13:59:10Z</dc:date>
    <item>
      <title>SAS E miner projects list in a phyisical folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673420#M19575</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;is there any way we can get the SAS E miner projects list from a Physical folder.&lt;/P&gt;&lt;P&gt;ex:if we use&amp;nbsp;%mdsecgo,&amp;nbsp;membertypes="MiningProject" then it will give all miner projects in metadata. but I am looking for Physical E miner projects list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 13:22:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673420#M19575</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2020-07-30T13:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAS E miner projects list in a phyisical folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673423#M19577</link>
      <description>&lt;P&gt;If your miner projects storage location is on the SAS server, you can use data step functions to retrieve your filenames:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data projectfiles;
length fref $8 pname $200;
did = filename(fref,"path_to_your_project_files");
did = dopen(fref);
if did
then do;
  do i = 1 to dnum(did);
    pname = dread(did,i);
    if scan(pname,-1,'.') = 'emp' then output;
  end;
  did = dclose(did);
end;
did = filename(fref);
run;
    &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Jul 2020 13:32:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673423#M19577</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-30T13:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS E miner projects list in a phyisical folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673428#M19579</link>
      <description>Thanks for this,&lt;BR /&gt;Table has 0 records.&lt;BR /&gt;I think it is not checking the sub folders and also I need path for the "project.emp"</description>
      <pubDate>Thu, 30 Jul 2020 13:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673428#M19579</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2020-07-30T13:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS E miner projects list in a phyisical folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673434#M19580</link>
      <description>&lt;P&gt;In order to scan a physical folder, you have to know the complete path to it. That is essential.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you know that,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;has a very nice method to traverse a whole directory tree in a single data step.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 13:59:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-E-miner-projects-list-in-a-phyisical-folder/m-p/673434#M19580</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-30T13:59:10Z</dc:date>
    </item>
  </channel>
</rss>

