<?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 do you loop through a list of files, getting the filenames, and then adding the names to a standalone table? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502501#M39478</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's what it should be doing as it's simply using whatever you add to the "inFiles" list.&amp;nbsp; In my example it would only add the 3 items.&amp;nbsp; If you had populated the list with 20 file references then it would have added 20 rows to the table.&amp;nbsp; Not sure if that answers your question. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Sep 2019 18:05:26 GMT</pubDate>
    <dc:creator>JamesCrandall</dc:creator>
    <dc:date>2019-09-16T18:05:26Z</dc:date>
    <item>
      <title>How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502491#M39468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am relatively new to python but I am trying to work on a script that works in conjunction with modelbuilder and so far things were working up to a point. The issue that I am having is I am trying to loop through a list of files, get the filenames, and update a table with the names from the files. Here is the script that I have currently:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os

&lt;SPAN class="comment token"&gt;#Set Parameters&lt;/SPAN&gt;
inFiles &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameterAsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
inTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameterAsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
inField &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameterAsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
outTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SetParameterAsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Iterate through files in folder, insert rows based on file names, and make table view layer&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;InsertCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inTable&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; inField&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;#List Files&lt;/SPAN&gt;
    flist &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;List&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inFiles&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; f &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; flist&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        
        &lt;SPAN class="comment token"&gt;#Make table view&lt;/SPAN&gt;
        arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;MakeTableView_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
        
        &lt;SPAN class="comment token"&gt;#Get filename(s)&lt;/SPAN&gt;
        f &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;basename&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;flist&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;rstrip&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;splitext&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;flist&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
        
        &lt;SPAN class="comment token"&gt;#Insert values and rows in table&lt;/SPAN&gt;
        cursor&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;f&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;del&lt;/SPAN&gt; cursor

&lt;SPAN class="comment token"&gt;#Add Message&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"This row {0} was added."&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;f&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help on this would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:03:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502491#M39468</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2021-12-11T22:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502492#M39469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you use code formatting?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/blogs/dan_patterson/2016/08/14/script-formatting"&gt;/blogs/dan_patterson/2016/08/14/script-formatting&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 13:10:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502492#M39469</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2019-09-16T13:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502493#M39470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I never used the code formatting before so it's new to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 13:54:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502493#M39470</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2019-09-16T13:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502494#M39471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does arcpy.List () exists? I would start with this:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/de/pro-app/arcpy/get-started/listing-data.htm" title="https://pro.arcgis.com/de/pro-app/arcpy/get-started/listing-data.htm"&gt;Erstellen von Datenlisten—ArcPy Get Started | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 13:56:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502494#M39471</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2019-09-16T13:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502495#M39472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Johannes. I did manage to get the script working, however, I get an empty output when I run the tool and so I am not sure what I am doing wrong exactly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 14:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502495#M39472</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2019-09-16T14:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502496#M39473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What if you put in a&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;arcpy&lt;SPAN class=""&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/CODE&gt;(f)
after line 20, does it throws something out?

I think your code needs to be "rebuilt", it's easier to do this with hard coded "parameters" rather than&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;arcpy&lt;SPAN class=""&gt;.&lt;/SPAN&gt;GetParameterAsText&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;0&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:03:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502496#M39473</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2021-12-11T22:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502497#M39474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A few questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;What does arcpy.GetParameterAsText(0) look like?&lt;OL&gt;&lt;LI&gt;A comma- or semicolon-delimited string?&lt;/LI&gt;&lt;LI&gt;Is the list using full paths?&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;You have an outTable parameter but aren't using it anywhere?&amp;nbsp; Why are you including it?&lt;/LI&gt;&lt;LI&gt;As &lt;A href="https://community.esri.com/migrated-users/47947"&gt;Johannes Bierer&lt;/A&gt;‌ mentioned already, what is arcpy.List?&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 14:47:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502497#M39474</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-09-16T14:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502498#M39475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like you just need to update the list of files to remove the path, leaving a file name then just append to a new list to use in the InsertCursor.&amp;nbsp; Also, MakeTableView_management is expecting another parameter (you only provided a single "inTable" and it needs the output name of the table view you want to create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;inFiles &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'H:\\file1.txt'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'H:\\file2.txt'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'H:\\file3.txt'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
inTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'\\computer1\home$\user\Docs\ArcGIS\Default.gdb\tabSourceIn'&lt;/SPAN&gt;
inField &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'filenames'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

rowvalues &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; file &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; inFiles&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    rowvalues&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;splitext&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;basename&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;file&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

cursor &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;InsertCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inTable&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'filenames'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; rowvalues&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    cursor&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;row&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;del&lt;/SPAN&gt; cursor

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;MakeTableView_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inTable&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'outputTableView'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:03:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502498#M39475</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-11T22:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502499#M39476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to make sense of the parse path script and loop. I am vaguely familiar with loops but the parse path script form the esri&amp;nbsp;documentation wasn't making much sense to me. The reason I was trying to utilize the Make Table View script is because when I ran the script in process within a model, I would receive an error stating the item cannot be opened or it does not exist. I think this link that I was utilizing might have been&amp;nbsp;adding my confusion but I could be wrong.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/tools/modelbuilder-toolbox/parse-path.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/tools/modelbuilder-toolbox/parse-path.htm"&gt;Parse Path—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to get a better understanding on how python works in terms of context and flow. I have several scripts that I have created that work the way I intended, but when I start to get into developing more complicated script, I start to get a bit confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Huge thanks for your help James&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 15:31:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502499#M39476</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2019-09-16T15:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502500#M39477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I tested your script and it works but it&amp;nbsp;populates the table with 20+ records, and so I am wondering if there is a way for me to have the table records update based on the number of files added. So if I add 3 files, then the tool adds 3 records to the table with the file names. I am really close to getting where I want to be and so I am working on this little tiny detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 17:24:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502500#M39477</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2019-09-16T17:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502501#M39478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's what it should be doing as it's simply using whatever you add to the "inFiles" list.&amp;nbsp; In my example it would only add the 3 items.&amp;nbsp; If you had populated the list with 20 file references then it would have added 20 rows to the table.&amp;nbsp; Not sure if that answers your question. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 18:05:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502501#M39478</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2019-09-16T18:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502502#M39479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This might be an obvious trick, it is a manual step though.&lt;/P&gt;&lt;P&gt;In Windows Explorer.&lt;/P&gt;&lt;P&gt;Select all files in you directory.&lt;/P&gt;&lt;P&gt;Hold Shift and 'Right Click'&lt;/P&gt;&lt;P&gt;'Copy as Path'&lt;/P&gt;&lt;P&gt;Paste into excel or notepad.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Save record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Point to your new file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 19:20:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502502#M39479</guid>
      <dc:creator>LaurenceLanglois1</dc:creator>
      <dc:date>2019-09-16T19:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502503#M39480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Because for some reason I am able to parse the path using modelbuilder and it returns the correct record. The only issue I have with using the script in modelbuilder is that I receive an error message stating the table either does't exists or it simply doesn't open. I have a slightly more dumbed down version of the model that works but I my end goal is to use the script in process with the model which would make this process more seamless. Otherwise the model and script combination that is working currently, works as two separate model tools. So I am simply trying to figure out the best approach to make two processes work as one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 19:52:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502503#M39480</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2019-09-16T19:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502504#M39481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if &lt;STRONG&gt;arcpy.da.Walk&lt;/STRONG&gt; will fix your issue but you might want to use if you're interested in listing datasets in subdirectories as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 20:50:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502504#M39481</guid>
      <dc:creator>PavanYadav</dc:creator>
      <dc:date>2019-09-16T20:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502505#M39482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked with one of my coworkers on this and he walked me through a process that you mentioned. Here is the script that he gave me as well as my own additions(mostly his).&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os

path &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\Folder\FolderName"&lt;/SPAN&gt;

files &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; r&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; d&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; f &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;walk&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; file &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; f&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'.mdb'&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; file&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
            files&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;file&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; f &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; files&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;##print(f)&lt;/SPAN&gt;
    strip &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;basename&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;file&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;rstrip&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;splitext&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;file&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; strip‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This solution was what I was actually trying to get to but, with my knowledge of python being so limited, I don't have a firm grasp on it. I meet with a friend every now and then to study python, but there is more to python than I can feasibly grasp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:03:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502505#M39482</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2021-12-11T22:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502506#M39483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This might be easier to do in Excel:&amp;nbsp; I can't give you all the steps as they have govt. pathnames within the screen scratches.&amp;nbsp; When you click on From Folder, a gui opens to allow you to Browse to a folder path, then click OK.&amp;nbsp; Once a directory list is created, you can move the columns around. Using the Extension down'arrow, you can sort for just *gdb, *shp, etc.&amp;nbsp; Last, Close &amp;amp; Load To ... (an excel worksheet).&amp;nbsp; It's very fast &amp;amp; easy to use.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.youtube.com/watch?v=GO-Q8j2lW2s"&gt;www.youtube.com&lt;/A&gt;/watch?v=GO-Q8j2lW2s&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.youtube.com/watch?v=GO-Q8j2lW2s" title="https://www.youtube.com/watch?v=GO-Q8j2lW2s"&gt;Get a List of File Names from Folders &amp;amp; Sub-folders in Excel (using Power Query) - YouTube&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/459743_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last step:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/459744_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2019 16:06:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502506#M39483</guid>
      <dc:creator>GailMorrison</dc:creator>
      <dc:date>2019-09-17T16:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502507#M39484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert , I notice you are using &lt;STRONG&gt;os.walk&lt;/STRONG&gt; not &lt;STRONG&gt;arcpy.da.Walk&lt;/STRONG&gt;. That's okay if it serves your purpose&amp;nbsp; but os.walk is file based and does not recognize database contents such as geodatabase feature classes, tables, or rasters. I thought I should point it out because in the future you might find it useful. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2019 16:43:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502507#M39484</guid>
      <dc:creator>PavanYadav</dc:creator>
      <dc:date>2019-09-17T16:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502508#M39485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Pavan. I didn't write that portion of the script, somebody else did and so I used it to test the script and it worked. I know that with the cursors you have to use .da. I didn't know that os.walk&amp;nbsp;also needed the .da as well. I will be sure to remember that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2019 16:58:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502508#M39485</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2019-09-17T16:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502509#M39486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, they are two different but similar functions. See the Discussion section at this help page: &lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/arcpy/data-access/walk.htm" title="https://pro.arcgis.com/en/pro-app/arcpy/data-access/walk.htm"&gt;Walk—Data Access module | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;in most cases, os.walk works. So, please don't worry about changing it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2019 17:09:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502509#M39486</guid>
      <dc:creator>PavanYadav</dc:creator>
      <dc:date>2019-09-17T17:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do you loop through a list of files, getting the filenames, and then adding the names to a standalone table?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502510#M39487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I won't worry about making changes. I'm still trying to get a better understanding of how the scripting in python affects the behavior of the overall script,&amp;nbsp; and how this can change the overall outcome of the desired result. The other thing that I'm still trying to grasp, that I simply don't fully understand at this point,&amp;nbsp; is the direction. I know what I would like for my end result to be at times, but getting there via scripting is more challenging. I'm really familiar with modelbuilder and I can create most tools from simple models. I realized that the end result that I want to get to is sometimes missing with the given esri tools. I realized that I could fill in for those missing pieces by creating script tools to fill in those gaps, or simplify long drawn out models by simplifying them to scripts. I arrived to the conclusion that I might need to practice more and get familiar with the basics. It's just that there's more to python than I originally thought, and there's other components that I was unaware of. So this is going to take time, but I would like to eventually get to the point that I can understand these things well enough that I won't get lost in the process. Any advice on this would be heavily appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2019 00:34:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-you-loop-through-a-list-of-files-getting/m-p/502510#M39487</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2019-09-18T00:34:56Z</dc:date>
    </item>
  </channel>
</rss>

