FileSystem

Overview

FileSystem is a class in Aspose.3D FOSS for Python.

File system encapsulation.

This class declares 7 methods for FileSystem objects in Python programs. Available methods include: __init__, create_dummy_file_system, create_local_file_system, create_zip_file_system, read_file, write_file. All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package.

Methods

SignatureDescription
__init__()Not implemented in the FOSS edition — throws at runtime. Calls init on this FileSystem instance.
create_zip_file_system(stream, base_dir: str)'FileSystem'Not implemented in the FOSS edition — throws at runtime. Creates a virtual file system backed by a zip archive stream
create_zip_file_system(file_name: str)'FileSystem'Not implemented in the FOSS edition — throws at runtime. Calls create_zip_file_system(file_name) on this FileSystem instance.
create_local_file_system(directory: str)'FileSystem'Not implemented in the FOSS edition — throws at runtime. Calls create_local_file_system(directory) on this FileSystem instance.
create_dummy_file_system()'FileSystem'Not implemented in the FOSS edition — throws at runtime. Calls create_dummy_file_system on this FileSystem instance.
read_file(file_name: str, options)'io.IOBase'Not implemented in the FOSS edition — throws at runtime. Calls read_file(file_name, options) on this FileSystem instance.
write_file(file_name: str, options)'io.IOBase'Not implemented in the FOSS edition — throws at runtime. Calls write_file(file_name, options) on this FileSystem instance.

See Also