<?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: Get a list of feature classes without setting env in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320631#M24911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using arcpy.da.Walk, you never have to set the workspace environment setting, just give a string path for the root directory you want checked.&amp;nbsp; If you use that with the os module, you can join together the filepath and filename with os.path.join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example from the help: &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//018w00000023000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//018w00000023000000" rel="nofollow noopener noreferrer" target="_blank"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif; font-size: 12.8000001907349px;"&gt;Ex. Use the Walk function to catalog polygon feature classes.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="kn" style="color: #0000ff;"&gt;import&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;arcpy&lt;/SPAN&gt;
&lt;SPAN class="kn" style="color: #0000ff;"&gt;import&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;os&lt;/SPAN&gt;

&lt;SPAN class="n"&gt;workspace&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s" style="color: #a31515;"&gt;"c:/data"&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;feature_classes&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="p"&gt;[]&lt;/SPAN&gt;

&lt;SPAN class="n"&gt;walk&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;da&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Walk&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;workspace&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;datatype&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s" style="color: #a31515;"&gt;"FeatureClass"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nb"&gt;type&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s" style="color: #a31515;"&gt;"Polygon"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="k" style="color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;dirpath&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;dirnames&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filenames&lt;/SPAN&gt; &lt;SPAN class="ow" style="color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n"&gt;walk&lt;/SPAN&gt;&lt;SPAN class="p"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filename&lt;/SPAN&gt; &lt;SPAN class="ow" style="color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filenames&lt;/SPAN&gt;&lt;SPAN class="p"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="n"&gt;feature_classes&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;append&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;os&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;path&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;join&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;dirpath&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filename&lt;/SPAN&gt;&lt;SPAN class="p"&gt;))&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course you could leave it open so it check all file types.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 15:13:31 GMT</pubDate>
    <dc:creator>IanMurray</dc:creator>
    <dc:date>2021-12-11T15:13:31Z</dc:date>
    <item>
      <title>Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320627#M24907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to get a list of feature classes in multiple GDBs. This is inconvenient because I have to set &lt;SPAN style="line-height: 1.5;"&gt;env.workspace &lt;/SPAN&gt;on each one in order to use ListFeatureClasses(). When I set the environment on the second GDB, I lose access to the feature classes in the first GDB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to get access to feature classes in each GDB without having to set the environment or use ListFeatureClasses()?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 16:12:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320627#M24907</guid>
      <dc:creator>JimO_Leary1</dc:creator>
      <dc:date>2015-08-04T16:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320628#M24908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not make an empty list and append the output from each ListFeatureClasses() to it?&amp;nbsp; That way you don't lose access to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you could use arcpy.da.Walk and go through multiple geodatabases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//018w00000023000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//018w00000023000000"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 16:16:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320628#M24908</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-08-04T16:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320629#M24909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;When I set the environment on the second GDB, I lose access to the feature classes in the first GDB.&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Could you clarify exactly what you're experiencing here? As long as you have the file name and path for the feature class, you can always "access" it. Setting the environment workspace or using &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;ListFeatureClasses() doesn't cause the feature class to be unavailable to anything. You should be able to use any of the suggestions from &lt;A href="https://community.esri.com/migrated-users/42743"&gt;Ian Murray&lt;/A&gt;​.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 16:22:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320629#M24909</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2015-08-04T16:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320630#M24910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This code return&amp;nbsp; "IOError: Roads does not exist."&lt;/P&gt;&lt;P&gt;----------------code BEGINS----------------------&lt;/P&gt;&lt;P&gt;from arcpy import *&lt;/P&gt;&lt;P&gt;env.workspace = r"C:\folder1\USA.gdb"&lt;/P&gt;&lt;P&gt;# Get a list of the feature classes in the current workspace&lt;/P&gt;&lt;P&gt;lstFeatureClass = arcpy.ListFeatureClasses()&lt;/P&gt;&lt;P&gt;# Make an empty list to hold the feature classes in the current GDB&lt;/P&gt;&lt;P&gt;lstFeatureClassStored = []&lt;/P&gt;&lt;P&gt;# Populate the list with the feature classes from the current workspace&lt;/P&gt;&lt;P&gt;for featureClass in lstFeatureClass:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lstFeatureClassStored.append(featureClass)&lt;/P&gt;&lt;P&gt;# Change the workspace&lt;/P&gt;&lt;P&gt;env.workspace = r"C:\folder2\Iowa.gdb"&lt;/P&gt;&lt;P&gt;# Loop through the stored feature classes. Here is where the exception is raised&lt;/P&gt;&lt;P&gt;for featureClassStored in lstFeatureClassStored:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(featureClassStored)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print desc.Name&lt;/P&gt;&lt;P&gt;--------------------code ENDS---------------------------&lt;/P&gt;&lt;P&gt;However, I think it is because the lstFeatureClassStored only stores the name of the feature class, not the feature class object itself, and when I change the environment it doesn't know "Roads".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By adding the whole path to the feature class as below, I can then loop through the list and access each feature class by the absolute file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------code BEGINS---------------------------&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;from arcpy import *&lt;/P&gt;&lt;P&gt;pathToFirstWorkspace = r"C:\folder1\USA.gdb"&lt;/P&gt;&lt;P&gt;env.workspace = pathToFirstWorkspace&lt;/P&gt;&lt;P&gt;lstFeatureClass = arcpy.ListFeatureClasses()&lt;/P&gt;&lt;P&gt;lstFeatureClassStored = []&lt;/P&gt;&lt;P&gt;for featureClass in lstFeatureClass:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Store the absolute path to the feature class inside the GDB&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pathToFeatureClass = r"%s\%s" % (pathToFirstWorkspace,featureClass)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lstFeatureClassStored.append(pathToFeatureClass)&lt;/P&gt;&lt;P&gt;# Change the workspace&lt;/P&gt;&lt;P&gt;env.workspace = r"C:\folder2\Iowa.gdb"&lt;/P&gt;&lt;P&gt;# Access the feature class by the absolute path to the GDB&lt;/P&gt;&lt;P&gt;for pathToFeatureClass in lstFeatureClassStored:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(pathToFeatureClass)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print desc.Name&lt;/P&gt;&lt;P&gt;--------------------code ENDS-----------------------------&lt;/P&gt;&lt;P&gt;So this works, but it still doesn't answer my question, is there a way to get a listing of classes without using env.workspace and ListFeatureClasses()? It seems very limiting to have to set the environment when you want to know what is in a geodatabase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 20:02:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320630#M24910</guid>
      <dc:creator>JimO_Leary1</dc:creator>
      <dc:date>2015-08-04T20:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320631#M24911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using arcpy.da.Walk, you never have to set the workspace environment setting, just give a string path for the root directory you want checked.&amp;nbsp; If you use that with the os module, you can join together the filepath and filename with os.path.join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example from the help: &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//018w00000023000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//018w00000023000000" rel="nofollow noopener noreferrer" target="_blank"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif; font-size: 12.8000001907349px;"&gt;Ex. Use the Walk function to catalog polygon feature classes.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="kn" style="color: #0000ff;"&gt;import&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;arcpy&lt;/SPAN&gt;
&lt;SPAN class="kn" style="color: #0000ff;"&gt;import&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;os&lt;/SPAN&gt;

&lt;SPAN class="n"&gt;workspace&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s" style="color: #a31515;"&gt;"c:/data"&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;feature_classes&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="p"&gt;[]&lt;/SPAN&gt;

&lt;SPAN class="n"&gt;walk&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;da&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Walk&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;workspace&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;datatype&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s" style="color: #a31515;"&gt;"FeatureClass"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nb"&gt;type&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s" style="color: #a31515;"&gt;"Polygon"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="k" style="color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;dirpath&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;dirnames&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filenames&lt;/SPAN&gt; &lt;SPAN class="ow" style="color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n"&gt;walk&lt;/SPAN&gt;&lt;SPAN class="p"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filename&lt;/SPAN&gt; &lt;SPAN class="ow" style="color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filenames&lt;/SPAN&gt;&lt;SPAN class="p"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="n"&gt;feature_classes&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;append&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;os&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;path&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;join&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;dirpath&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;filename&lt;/SPAN&gt;&lt;SPAN class="p"&gt;))&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course you could leave it open so it check all file types.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:13:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320631#M24911</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2021-12-11T15:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320632#M24912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that works. You still have to join the full path name to the feature class name, but you don't have to set the env.workspace.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 20:57:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320632#M24912</guid>
      <dc:creator>JimO_Leary1</dc:creator>
      <dc:date>2015-08-04T20:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320633#M24913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I deleted my response with the addin since you found a simpler solution and mine wasn't complete.&amp;nbsp; No use having a partial out there.&amp;nbsp; I you ever want to try it let me know.&amp;nbsp; Once done I'll be posting....but slow going with other higher priority tasks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 21:30:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320633#M24913</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-08-04T21:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Get a list of feature classes without setting env</title>
      <link>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320634#M24914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that's exactly what I was getting at. Thanks for taking the time to put that together, Ian.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 23:42:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/get-a-list-of-feature-classes-without-setting-env/m-p/320634#M24914</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2015-08-04T23:42:14Z</dc:date>
    </item>
  </channel>
</rss>

