描述
与 Describe 函数配合使用时,文件返回的 dataType 为“File”。
代码示例
文件属性示例(独立脚本)
以下独立脚本将显示文件的一些 Describe 对象属性。
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