Advertisement
DraKiNs

[COD] Remove various Files (fremoveEx)

Aug 22nd, 2011
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.41 KB | None | 0 0
  1. /*
  2.  
  3.  * Author: Bruno da Silva
  4.  * Site: www.ips-team.blogspot.com
  5.  * Date: 19:15 21/08/2011
  6.  * (C) Copyright [iPs]TeaM
  7.  *
  8.  
  9. */
  10.  
  11.  
  12. fremoveEx(...)
  13. {
  14.     static tempString[64];
  15.     for(new i, j = numargs(); i != j; ++i)
  16.     {
  17.         tempString[0] = EOS;
  18.         for(new s; getarg(i, s);  ++s)
  19.         {
  20.             tempString[s] = getarg(i, s) ;
  21.         }
  22.         if(fexist(tempString)) fremove(tempString);
  23.     }
  24.     return true;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement