home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / BSHOW121.ZIP / RBBSBATS.ZIP / VU_FILE.BAT < prev    next >
DOS Batch File  |  1993-07-05  |  965b  |  33 lines

  1. @Echo OFF
  2. Rem Parameters passed from Maple RBBS
  3. Rem This View bat is for use with Bshow...
  4. Rem Create a file Called NOVIEW.? (? = Node number) if you do NOT wish to
  5. Rem allow viewing of a certain file extension or do NOT support it
  6. Rem this file is created in the subdir were Command.Com can be located
  7.  
  8. Rem %1 = complete Drive/subdir/filename to view
  9. Rem %2 = name of ArcWorkFile (ARCWORK?.DEF)
  10. Rem %3 = Comport in use
  11. Rem %4 = Extension to View
  12. Rem %5 = NodeId
  13.  
  14. Rem following line bypasses extension checking and lets Bshow do the work
  15. goto view
  16.  
  17. Rem if you want to filter the extensions comment out above line!
  18. If %4 == ARJ GOTO VIEW
  19. IF %4 == ZIP GOTO VIEW
  20. IF %4 == LZH GOTO VIEW
  21. IF %4 == ARC GOTO VIEW
  22. IF %4 == PAK GOTO VIEW
  23. IF %4 == DOC GOTO VIEW
  24. IF %4 == TXT GOTO VIEW
  25.  
  26. rem Create the NoView file incase we missed something up above
  27. echo . > E:\RBBS\NOVIEW.%5
  28. GOTO EXIT
  29.  
  30. :VIEW
  31. BSHOW %1 /p%3 /w%2 /c /m10 /l500 /t90 /i23
  32. :EXIT
  33.