サマリー
テキスト ファイルに表形式のデータが含まれている場合、Describe 関数はテキスト ファイルに対してテーブル プロパティとデータセット プロパティを返します。表データが含まれていない場合については、ファイル プロパティをご参照ください。
テキスト ファイルが返す dataType は TextFile です。
コードのサンプル
Text File properties example (stand-alone script)
The following stand-alone script displays some Text File properties for a text file that has tabular data.
import arcpy
# Create a Describe object from the text file.
#
desc = arcpy.Describe("C:/data/evac_table.txt")
# Print some table properties
#
print "HasOID: " + str(desc.hasOID)
print "\nField names:"
for field in desc.fields:
print " " + field.name