File size: 290 Bytes
22e9496
 
 
19bdcd8
 
 
 
fe55bc9
19bdcd8
 
22e9496
1
2
3
4
5
6
7
8
9
10
11
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, )