Home > matlab > mydelete.m

mydelete

PURPOSE ^

Specialized version of delete() function

SYNOPSIS ^

function mydelete(fname,pname)

DESCRIPTION ^

 Specialized version of delete() function

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function mydelete(fname,pname)
0002 % Specialized version of delete() function
0003 
0004 % Copyright (C) 2009 Dynare Team
0005 %
0006 % This file is part of Dynare.
0007 %
0008 % Dynare is free software: you can redistribute it and/or modify
0009 % it under the terms of the GNU General Public License as published by
0010 % the Free Software Foundation, either version 3 of the License, or
0011 % (at your option) any later version.
0012 %
0013 % Dynare is distributed in the hope that it will be useful,
0014 % but WITHOUT ANY WARRANTY; without even the implied warranty of
0015 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0016 % GNU General Public License for more details.
0017 %
0018 % You should have received a copy of the GNU General Public License
0019 % along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
0020 
0021 if nargin ==0,
0022     disp('mydelete(fname)')
0023     return
0024 end
0025 
0026 if nargin ==1,
0027     pname='';
0028 end
0029 
0030 file_to_delete = dir([pname,fname]);
0031 for j=1:length(file_to_delete),
0032     delete([pname,file_to_delete(j).name]);
0033 end

Generated on Tue 22-May-2012 02:40:23 by m2html © 2005