Spaces:
Sleeping
Sleeping
File size: 387 Bytes
5ce1fe8 168b5c0 98f9bc1 5ce1fe8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
from pathlib import Path
project_path = os.path.abspath(os.path.dirname(__file__))
project_path = Path(project_path)
log_directory = project_path / "log"
log_directory.mkdir(parents=True, exist_ok=True)
temp_directory = project_path / "temp"
temp_directory.mkdir(parents=True, exist_ok=True)
if __name__ == '__main__':
pass
|