home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Demonstration of the Sorted Directory Utility Program (SD) ║
- echo ║ Copyright (C) 1989 By John F. Stetson - All Rights Reserved ║
- echo ║ ║
- echo ║ The following demonstration illustrates some of the features ║
- echo ║ and capabilities of the SD utility program. Please refer to ║
- echo ║ the program documentation (SD.DOC) for additional information. ║
- echo ║ Press CTRL-BREAK to terminate the demonstration at any time. ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ System Information Summary ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1/i/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Program Help Information ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd /?/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files Sorted By Size In 1 Column Mode ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1/e/v/b/1/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files Sorted By Date And Time In 2 Column Mode ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1/e/v/d/o/2/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files Sorted By Type In 6 Column Mode ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1/e/v/x/6/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Graphic Directory Tree Map ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1\/m/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files In All Directories Sorted By Name In 4 Column Mode ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1\/e/v/g/f/4/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files In All ARC and ZIP Files Sorted By Name In 4 Column Mode ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1\/e/v/g/az/f/4/$%2
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Grand Totals Only For All Directories, ARC and ZIP Files ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1\/e/v/gt/az+/$%2
- :end
- echo Returning To The DOS Command Prompt . . .