<?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: Anyone able to run arcpy.ListFeatureClasses() successfully? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506863#M39864</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;List Feature Classes assumes the workspace, and therefore the path, has already been set.&amp;nbsp; You are passing a full path to List Feature Classes when it is expecting just a name.&amp;nbsp; Try:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'SDE_SPATIAL.GISADMIN.Airport'&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Jun 2017 13:46:51 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2017-06-09T13:46:51Z</dc:date>
    <item>
      <title>Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506862#M39863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;ANSWER&lt;/STRONG&gt;: I was missing the 'feature_dataset=' from line 14 of my test code. Credit goes to&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3100" target="_blank"&gt;Xander Bakker&lt;/A&gt;&amp;nbsp;for the sample code that pointed this out&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;feature_dataset&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN class="" style="background: rgba(255, 255, 255, 0.5); border: 0px;"&gt;=&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class="" style="background: rgba(255, 255, 255, 0.5); border: 0px; color: #000000;"&gt;test_dataset&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hey All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ArcMap installed at version 10.3.1 and I have several automation scripts, and I&amp;nbsp;have recently noticed all my scripts that use arcpy.ListFeatureClasses() fatally error out at that tool.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is someone else able to confirm they are able to run this without any critical errors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have just used the below code to test it bare basics, if someone else could please assist by changing the three variables to suit, does it run successfully?&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

connection &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"Database Connections\GISADMIN@SDE_Spatial@SDE-DB.sde"&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; connection

test_dataset &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'Database Connections\GISADMIN@SDE_Spatial@SDE-DB.sde\SDE_SPATIAL.GISADMIN.Airport'&lt;/SPAN&gt;

test_feature_within_dataset &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'Database Connections\GISADMIN@SDE_Spatial@SDE-DB.sde\SDE_SPATIAL.GISADMIN.Airport\SDE_SPATIAL.GISADMIN.Airport_Lighting_Zones'&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Exists&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;test_dataset&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Exists&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;test_feature_within_dataset&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'It will fail at the next line of code'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;test_dataset&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'\n\nTEST COMPLETE'&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="356331" alt="Fatal error" class="image-1 jive-image j-img-original" src="/legacyfs/online/356331_2017-06-09 150546 C__Python27_ArcGIS10.3_python.exe.jpg" style="width: 620px; height: 306px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am considering updating my machine to the latest version, but before I take this step I am hoping someone can confirm it doesn't&amp;nbsp;work at this version?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much for your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:14:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506862#M39863</guid>
      <dc:creator>BenVan_Kesteren1</dc:creator>
      <dc:date>2021-12-11T22:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506863#M39864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;List Feature Classes assumes the workspace, and therefore the path, has already been set.&amp;nbsp; You are passing a full path to List Feature Classes when it is expecting just a name.&amp;nbsp; Try:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'SDE_SPATIAL.GISADMIN.Airport'&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2017 13:46:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506863#M39864</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-06-09T13:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506864#M39865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good check... but crashing python is not what it should do.&amp;nbsp; I suspect that there are other issues as well&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2017 20:59:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506864#M39865</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-06-09T20:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506865#M39866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree, there probably is something more.&amp;nbsp; When I mimic the OP's situation, List Feature Classes simply returns an empty list, it doesn't crash Python.&amp;nbsp; That said, it will be interesting if passing proper arguments will work or if it will still crash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2017 23:36:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506865#M39866</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-06-09T23:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506866#M39867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The arcpy.ListFeatureClasses should not crash. There might be something wrong with permissions, but if you are using a local .sde file and that works for you manually, then it should also work in the standalone pythons script. Below a simple sample of looping through all the featureclasses in de GDB,&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

ws &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# your path to sde workspace&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ws

fdss &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListDatasets&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
fdss&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# for those fc that reside in the root of the sde ws&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; fds &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fdss&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_names &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;feature_dataset&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;fds&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; fc_name &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fc_names&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc &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;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;ws&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; fds&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; fc_name&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# do somthing with the fc&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; fc‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:14:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506866#M39867</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T22:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506867#M39868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt;‌ your sample code has pointed out my issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On line 11 you have this:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;feature_dataset&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;fds&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i have been using in all my code is the equivalent of:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fds&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it seems for this tool to run on my machine I need to ensure I define the argument with &lt;STRONG&gt;feature_dataset=&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your assistance everybody, I have been pulling my hair out with this one. When I install 10.5 I would be curious to know if I need to continue to name the argument as above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:04:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506867#M39868</guid>
      <dc:creator>BenVan_Kesteren1</dc:creator>
      <dc:date>2017-06-13T01:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506868#M39869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I didn't expand on what was happening, if I run in catalog python window it was returning an empty list, but if I ran a standalone python window it would crash as per my original post and screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your time &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:06:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506868#M39869</guid>
      <dc:creator>BenVan_Kesteren1</dc:creator>
      <dc:date>2017-06-13T01:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506869#M39870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That single line of code crashes arcCatalog when I run it in the Python Window:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'SDE_SPATIAL.GISADMIN.Airport'&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This line works perfectly:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;feature_dataset&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'SDE_SPATIAL.GISADMIN.Airport'&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This script was working fine for over a year, I think the problem started when we updated from 10.3 to 10.3.1, but I cannot be 100% sure, it could be coincidental.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:11:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506869#M39870</guid>
      <dc:creator>BenVan_Kesteren1</dc:creator>
      <dc:date>2017-06-13T01:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone able to run arcpy.ListFeatureClasses() successfully?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506870#M39871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try a repair installation of desktop software&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:11:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-able-to-run-arcpy-listfeatureclasses/m-p/506870#M39871</guid>
      <dc:creator>Lake_Worth_BeachAdmin</dc:creator>
      <dc:date>2017-06-13T13:11:36Z</dc:date>
    </item>
  </channel>
</rss>

