ListIndexes

Summary

Returns a list of the indexes in a feature class, shapefile, or table in a specified dataset.

Syntax

ListIndexes (dataset, {wild_card})
ParameterExplanationData Type
dataset

The specified feature class or table with the indexes to be returned.

String
wild_card

Limits the results returned. If a value is not specified, all values are returned. The wildcard is not case sensitive.

SymbolDescriptionExample

*

Represents zero or more characters.

Te* finds Tennessee and Texas.

String
Return Value
Data TypeExplanation
Index

A list containing Index objects is returned.

Code sample

ListIndexes example

List index properties.

import arcpy

featureclass = "c:/data/roads.shp"

# Get list of indexes for roads.shp and print properties
indexes = arcpy.ListIndexes(featureclass)
for index in indexes:
    print("Name        : {0}".format(index.name))
    print("IsAscending : {0}".format(index.isAscending))
    print("IsUnique    : {0}".format(index.isUnique))

Related topics