Spaces:
Running
Running
File size: 469 Bytes
021e065 | 1 2 3 4 5 6 7 8 9 10 11 12 | import os
SENTI_AI_ROOT = r"C:\Users\LENOVO\Desktop\senti_ai"
print("--- CURRENT DATA VOLUME (JSON COUNT) ---")
for folder in os.listdir(SENTI_AI_ROOT):
if os.path.isdir(folder) and folder.startswith("senti"):
cleaned_dir = os.path.join(SENTI_AI_ROOT, folder, "cleaned")
if os.path.exists(cleaned_dir):
count = len([f for f in os.listdir(cleaned_dir) if f.endswith('.json')])
print(f"{folder.ljust(20)} : {count} records")
|