7 lines
129 B
Python
7 lines
129 B
Python
from pathlib import Path
|
|
|
|
Import("env")
|
|
|
|
filesystem_dir = env["PROJECT_DIR"] + "/data"
|
|
|
|
Path(filesystem_dir).mkdir(exist_ok=True) |