File size: 695 Bytes
86c824a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import os
from pathlib import Path

list_file = [
    "src/__init__.py",
    "src/pipeline.py",
    "src/settings.py",
    "src/prompts.py",
    "logs/medical_report_analysis.log",
    "test_docs/.gitkeep",
    "app.py",
    "experiments/experiments.ipynb",
    ".env",
    "Dockerfile",
    "requirements.txt",
    ".gitignore",
    "README.md",


]


for file in list_file:
    file = Path(file)
    folder, filename = os.path.split(file)

    if not os.path.exists(folder) and folder != "":
        os.makedirs(folder,exist_ok=True)

    if not os.path.exists(file) or (os.path.getsize(file)==0):
        with open(file=file,mode="w") as f:
            pass