你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

core Module

The main file-system class and functionality.

Provides an pythonic interface to the Azure Data-lake Store, including file-system commands with typical names and options, and a File object which is compatible with the built-in File.

Classes

AzureDLFile

Open ADL key as a file. Data is only loaded and cached on demand.

AzureDLFileSystem

Access Azure DataLake Store as if it were a file-system

AzureDLPath

Subclass of native object-oriented filesystem path.

This is used as a convenience class for reducing boilerplate and eliminating differences between system-dependent paths.

We subclass the system's concrete pathlib class due to this issue:

http://stackoverflow.com/questions/29850801/subclass-pathlib-path-fails

Construct a PurePath from one or several strings and or existing PurePath objects. The strings and path objects are combined so as to yield a canonicalized path, which is incorporated into the new PurePath object.