laptop and a wrench

Bug

ListFeatureClasses(), ListTables() and ListDatasets() methods will not work in ArcToolbox as a script tool, but work fine in PythonWin.These methods were defected with shapefiles but not with personal geodatabse and file geodatabase.

Zuletzt veröffentlicht: August 25, 2014 No Product Found
Bug-ID-Nummer NIM011091
EingereichtAugust 20, 2007
Zuletzt geändertJune 5, 2024
Gilt fürNo Product Found
Gefunden in Version9.2
Behoben in Version9.3
StatusFixed

Workaround

1) Convert all shapefiles from a folder to one personal geodatabase or file geodatabase.OR2) Use native a py module method to list shapefiles from a directory. The following is an example of how you could use the glob module to build a list of all shapefiles in a given directory. #############################import sys, string, os, glob, timegp = arcgisscripting.create()root = r"C:\Incidents\Active" # one specific folderfile_list = []for folder in glob.glob(root): for file in glob.glob(folder + '/*.shp'): file_list.append(file)x = 0while x < len(file_list): print file_list[x] x+=1############################

Schritte zur Reproduzierung

Bug-ID: NIM011091

Software:

  • No Product Found

Benachrichtigung erhalten, wenn sich der Status eines Bugs ändert

Esri Support App herunterladen

Weitere Informationen zu diesem Thema erkunden

Unterstützung durch ArcGIS-Experten anfordern

An den technischen Support wenden

Esri Support App herunterladen

Zu Download-Optionen wechseln