フォルダ プロパティ

サマリー

Describe 関数は、フォルダに対してワークスペース プロパティを返します。

フォルダが返す dataTypeFolder です。

コードのサンプル

Folder properties example (stand-alone script)

The following stand-alone script displays some properties for a folder.

import arcpy
 

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

# Print the dataType and a workspace property
#
print("Data Type:      " + desc.dataType)
print("Workspace Type: " + desc.workspaceType)

このトピックの内容