home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / FF_200.ZIP / BATFILES.ZIP / FF.BAT < prev    next >
DOS Batch File  |  1994-07-20  |  813b  |  36 lines

  1. ** Batfile to Virus check any uploads using THDPRO
  2. ** By Kevin Miller.
  3.  
  4.  
  5. @ECHO OFF
  6. CLS
  7. D:
  8.  
  9. ** Check for Previous uploads and delete message file.
  10. IF EXIST D:\BBS\LOGS\UPLOADS.MES DEL D:\BBS\LOGS\UPLOADS.MES
  11.  
  12. SET FASTFILE=D:\bbs\files\fastfile\
  13. CD \bbs\files\fastfile
  14. FASTFILE %1
  15. CD \BBS
  16.  
  17.  
  18. ** If user has uploaded any files, FF will have created the file UPLOADS.MES
  19. IF EXIST D:\BBS\LOGS\UPLOADS.MES GOTO VIRUS
  20. GOTO END:
  21.  
  22. :VIRUS
  23. ** Post a message to the sysop, notifying him of an upload by the user.
  24. FEUTIL POST D:\BBS\LOGS\UPLOADS.MES #3 -from "Fastfile" -To "Sysop"
  25. CD \BBS\FILES\AREA\UPLOADS
  26.  
  27. For all files in the directory Uploads, perform Virus check. (See Vircheck.BAT)
  28. for %%f in (*.*) do call D:\BBS\BATFILES\vircheck d:\bbs\files\area\uploads\%%f           
  29.  
  30. :END
  31.  
  32.  
  33.  
  34.  
  35.  
  36.