<?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: How to get complete file names in many folders in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-get-complete-file-names-in-many-folders/m-p/242434#M6299</link>
    <description>"Automatically" is a strong word, what is your requirement? And what shall you do with them? &lt;BR /&gt;&lt;BR /&gt;You could use data step extrnal file functions, or use a filename to pipe the dir/ls command. &lt;BR /&gt;&lt;BR /&gt;Are you using DI Studio?</description>
    <pubDate>Fri, 08 Jan 2016 18:40:08 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2016-01-08T18:40:08Z</dc:date>
    <item>
      <title>How to get complete file names in many folders</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-get-complete-file-names-in-many-folders/m-p/242427#M6296</link>
      <description>&lt;P&gt;I have many folders. In each of them, there are a number of files.&amp;nbsp; Is there a quick way to get all file names automatically?&amp;nbsp; For example, for the attached figure, I hope to get names, such as ABB006.dat, ABB0012.data, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12175i41769BD0E4D1F9EB/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="get_file_name.jpg" title="get_file_name.jpg" /&gt;</description>
      <pubDate>Fri, 08 Jan 2016 18:18:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-get-complete-file-names-in-many-folders/m-p/242427#M6296</guid>
      <dc:creator>wutao9999</dc:creator>
      <dc:date>2016-01-08T18:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to get complete file names in many folders</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-get-complete-file-names-in-many-folders/m-p/242434#M6299</link>
      <description>"Automatically" is a strong word, what is your requirement? And what shall you do with them? &lt;BR /&gt;&lt;BR /&gt;You could use data step extrnal file functions, or use a filename to pipe the dir/ls command. &lt;BR /&gt;&lt;BR /&gt;Are you using DI Studio?</description>
      <pubDate>Fri, 08 Jan 2016 18:40:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-get-complete-file-names-in-many-folders/m-p/242434#M6299</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-01-08T18:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to get complete file names in many folders</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-get-complete-file-names-in-many-folders/m-p/242438#M6301</link>
      <description>&lt;P&gt;How about this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename flist pipe 'dir C:\Temp /a-d/b/s'; /* please enter your parent folder */

data fnames;
length fname $400; /* please adapt the length up/down as necessary/convenient */
infile flist;
input;
fname=scan(_infile_,-1,'\');
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Jan 2016 18:51:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-get-complete-file-names-in-many-folders/m-p/242438#M6301</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-01-08T18:51:28Z</dc:date>
    </item>
  </channel>
</rss>

