CloudDirEntryOp
サマリー
Gets the file path and other file attributes of a directory entry from the cloud.
ディスカッション
注意:
This class cannot be instantiated directly. An instance of this class is returned by the AIODirEntry object's cloud property.
方法
getpath({type})
Gets the absolute path of the entry in CloudPathType format.
| 名前 | 説明 | データ タイプ |
|---|---|---|
|
type (オプション) |
Specifies the path style that will be used for the returned URI (for cloud only). The data type is CloudPathType. Use the following options from the The default value is CloudPathType.VSI. |
Object |
戻り値
| データ タイプ | 説明 |
|---|---|
|
String |
Returns the path in the format specified by the |
from arcpy import CloudPathType
cloud_io = AIO(r"C:\data\datacloud.acs")
for item in cloud_io.scandir(r'list', depth=0):
print(item.cloud.getpath(CloudPathType.ACS))
getvsipath()
Gets the absolute path of the entry in VSI format.
戻り値
| データ タイプ | 説明 |
|---|---|
|
String |
Returns the absolute VSI path. |
cloud_io = AIO(r"C:\data\datacloud.acs")
for item in cloud_io.scandir(r'list', depth=0):
print(item.cloud.getvsipath())