File size: 602 Bytes
5478d4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import os

# Dir path
CACHE_DIR = "/home/user/app/cache"
MODEL_DIR = "/home/user/app/model"

# Verify structures:

# Model Dir
def print_model():
    print("\n📂 Model Structure (Build Level):")
    for root, dirs, files in os.walk(MODEL_DIR):
        print(f"📁 {root}/")
        for file in files:
            print(f"  📄 {file}")

# Cache Dir
def print_cache():
    print("\n📂 Cache Structure (Build Level):")
    for root, dirs, files in os.walk(CACHE_DIR):
        print(f"📁 {root}/")
        for file in files:
            print(f"  📄 {file}")


# Show
print_model()
print_cache()