CloudDirEntryOp

Synthèse

Gets the file path and other file attributes of a directory entry from the cloud.

Discussion

Remarque :

This class cannot be instantiated directly. An instance of this class is returned by the AIODirEntry object's cloud property.

Vue d’ensemble des méthodes

MéthodeExplication
getpath ({type})

Gets the absolute path of the entry in CloudPathType format.

getvsipath ()

Gets the absolute path of the entry in VSI format.

Méthodes

getpath ({type})
ParamètreExplicationType de données
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 CloudPathType enumeration: CloudPathType.VSI, CloudPathType.ACS, CloudPathType.HTTP, and CloudPathType.CLOUDSTORES.

(La valeur par défaut est CloudPathType.VSI)

Object
Valeur renvoyée
Type de donnéesExplication
String

Returns the path in the format specified by the type parameter.

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 ()
Valeur renvoyée
Type de donnéesExplication
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())