This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/server/szurubooru/func/files.py

8 lines
259 B
Python

import os
from szurubooru import config
def save(path, content):
full_path = os.path.join(config.config['data_dir'], path)
os.makedirs(os.path.dirname(full_path), exist_ok=True)
with open(full_path, 'wb') as handle:
handle.write(content)