;; | ---------------------------------------------------------------------------- ;; | MI_HideFile ;; | ---------------------------------------------------------------------------- ;; | Function : Change attributes of the specified file(s) to "Hide" ;; | Auguments: 'fn' - FileName ;; | Return : T if successful, else nil ;; | Updated : October 26, 2000 ;; | e-mail : rakesh.rao@4d-technologies.com ;; | Web : www.4d-technologies.com ;; | Comments : Requires the FREEWARE doslib (from Robert McNeel & Associates) to ;; | be loaded in advance ;; | ;; | Direct Download URL: http://download.rhino3d.com/McNeel/1.0/doslib/ ;; | ;; | ---------------------------------------------------------------------------- (defun MI_HideFile( fn ) (dos_attrib fn 2) )