did some shi and finished two commands and a basic structure

This commit is contained in:
2026-04-23 14:29:15 -04:00
parent d73863a2b8
commit 74abef1b9f
9 changed files with 80 additions and 0 deletions

View File

View File

View File

@@ -0,0 +1,15 @@
from pathlib import Path
def main():
# Set the directory path
script_dir = Path(__file__).resolve().parent
dir_path = Path("")
# Use the current script's directory or specify a path
base_path = Path(__file__).resolve().parent
for entry in dir_path.iterdir():
if entry.is_dir():
print(f"[FOLDER] {entry.name}")
elif entry.is_file():
print(f"[FILE] {entry.name}")