File properties

Zusammenfassung

When used with the Describe function, a file returns a dataType of "File".

Codebeispiel

File properties example (stand-alone script)

The following stand-alone script displays some Describe Object Properties for a file.

import arcpy


# Create a Describe object
#
desc = arcpy.Describe("C:/data/Install.log")

# Print some Describe Object properties for the file
#
print("Data Type: " + desc.dataType)
print("Path:      " + desc.path)
print("Base Name: " + desc.baseName)
print("Extension: " + desc.extension)

In diesem Thema