19 lines
606 BLFS
Python
19 lines
606 BLFS
Python
from ..FileSystem.FSDirectory import FSDirectory
|
|
|
|
|
|
class VROMFsCollection:
|
|
"""
|
|
A higher level class compared to VROMFs
|
|
allows to store multiple VROMF objects as well as a combined file system
|
|
also implements auto updating of internal filesystem and vromfs whenever a update happens and data is requested
|
|
:param path: an optional parameter that lets you specify input path(s) to look for vromfs
|
|
"""
|
|
def __init__(self, path=None):
|
|
self._vromfs = []
|
|
self.directory = FSDirectory("main", None)
|
|
self.path = path
|
|
|
|
def add(self, vromfs_path):
|
|
pass
|
|
|