home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / DESQVIEW / DSLIST.ZIP / DSLIST.BAT < prev    next >
DOS Batch File  |  1988-03-08  |  536b  |  32 lines

  1. echo off
  2. cls
  3. if not exist %3\%1.%2 goto case2
  4. :name & extension not in root directory
  5. list %3\%1.%2
  6. goto end
  7.  
  8. :case2
  9. if not exist %2\%1 goto case3
  10. :no extension, not in root directory
  11. list %2\%1
  12. goto end
  13.  
  14. :case3
  15. if not exist %3%1.%2 goto case4
  16. :name & extension in root directory
  17. list %3%1.%2
  18. goto end
  19.  
  20. :case4
  21. if not exist %2%1 goto oops
  22. :no extension, in root directory
  23. list %2%1
  24. goto end
  25.  
  26. :oops
  27. echo Something's wrong here.
  28. echo Was the mouse in the directory window
  29. echo when you pressed ALT-L?
  30.  
  31. :end
  32.