home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_DeleteFile.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** Delete some files
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* ask user what they want to delete */
- requestfile title """Select File(s) To Delete...""" multiselect path """""" file """""" getdir
-
- /* if things were selected then do it */
- if rc==0 then do
- files = result
-
- /* lets be paranoid about this */
- requestchoice """Are you sure you wish to delete selected entries?"""
- if RC == 0 then address command delete """"files""""
- end
-