devve1's picture
Update storage.py
19bdcd8 verified
raw
history blame
No virus
290 Bytes
import File
class LocalFileStore:
def __init__(self, path):
self.path = path
def mset(self, file_type: File, name: str):
self.file_path = os.path.join(self.path, f'{name}_{file_type.get_file_name()}.{file_type.get_extension_file()}')
def mget(self, )