home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Editor / Edge1721.DMS / Edge1721.adf / Edge_Rexx.lha / Menu_DeleteFile.edge < prev    next >
Encoding:
Text File  |  1993-11-09  |  535 b   |  22 lines

  1. /*
  2. ** $VER: Menu_DeleteFile.edge 1.0 (Friday 22-Oct-93 12:55:22)
  3. **
  4. ** Delete some files
  5. **
  6. ** Written by Thomas liljetoft & Inovatronics
  7. */
  8.  
  9. options results
  10.  
  11. /* ask user what they want to delete */
  12. requestfile title """Select File(s) To Delete...""" multiselect path """""" file """""" getdir
  13.  
  14. /* if things were selected then do it */
  15. if rc==0 then do
  16.     files = result
  17.     
  18.     /* lets be paranoid about this */
  19.     requestchoice """Are you sure you wish to delete selected entries?"""
  20.     if RC == 0 then address command delete """"files""""
  21. end
  22.