Files
orion/scripts/show-frontend-structure.bat

18 lines
406 B
Batchfile

@echo off
echo Generating frontend structure...
echo.
set OUTPUT=frontend-structure.txt
echo Frontend Folder Structure > %OUTPUT%
echo Generated: %date% %time% >> %OUTPUT%
echo ============================================================================== >> %OUTPUT%
echo. >> %OUTPUT%
tree /F /A static >> %OUTPUT%
echo.
echo ✅ Structure saved to %OUTPUT%
echo.
echo Opening file...
notepad %OUTPUT%