-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug_check_folder.py
29 lines (24 loc) · 1021 Bytes
/
debug_check_folder.py
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
# Kiểm tra xem tất cả các subdirectories trong một directory có dạng YYYY-MM-DD_HH-MM-SS không tại depth = 4
# Nghĩa là {input_path}/*/*/*/YYYY-MM-DD_HH-MM-SS/
# Show ra các subdirectories không phải dạng YYYY-MM-DD_HH-MM-SS
import os
import glob
import argparse
import re
# Create argument parser
parser = argparse.ArgumentParser(description="Debug check folder")
parser.add_argument("--input_path", type=str, help="Input path")
parser.add_argument("--depth", type=int, help="Depth")
args = parser.parse_args()
# Define function
def debug_check_folder(input_path, depth):
paths = glob.glob(os.path.join(input_path, *("*" * (depth - 1))))
for path in paths:
subdirs = os.listdir(path)
for subdir in subdirs:
if not re.match(r"\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}", subdir):
print(f"{path}/{subdir}")
else:
print(f"{path}/{subdir} is correct")
# Test
debug_check_folder(args.input_path, args.depth)