Help for this page

Select Code to Download


  1. or download this
       use File::Path 'rmtree';
    
       rmtree([ "$rootpath/$username" ]);
    
  2. or download this
       rmtree([ map {"$rootpath/$_"} @user ]);
    
  3. or download this
       rmtree([ map {"$rootpath/$_"} @user ], 1);