1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) 2008 - INRIA
7 * This file must be used under the terms of the CeCILL.
8 * This source file is licensed as described in the file COPYING, which
9 * you should have received as part of this distribution. The terms
10 * are also available at
11 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
14 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:lang="en" xml:id="mdelete">
16 <refname>mdelete</refname>
17 <refpurpose>deletes file(s)</refpurpose>
20 <title>Calling Sequence</title>
21 <synopsis>mdelete(filename)</synopsis>
24 <title>Arguments</title>
30 a character string: the pathname of the file(s) to delete.
37 <title>Description</title>
39 <function>mdelete</function> may be used to delete a file or a set of files if
40 <varname>filename</varname> contains meta-characters.
44 Note that <function>mdelete</function> does not ask for confirmation
45 when you enter the delete command.
46 To avoid accidentally losing files, make sure that you have
47 accurately specified the items you want deleted.
52 <title>Examples</title>
53 <programlisting role="example"><![CDATA[
54 r = mputl('I am a dummy String', TMPDIR+'/dummyFile.dummy');
55 mdelete(TMPDIR+"/dummyFile.dummy");
59 <refsection role="see also">
60 <title>See Also</title>
61 <simplelist type="inline">
63 <link linkend="mopen">mopen</link>
66 <link linkend="mclose">mclose</link>
69 <link linkend="meof">meof</link>
72 <link linkend="mfprintf">mfprintf</link>
75 <link linkend="fprintfMat">fprintfMat</link>
78 <link linkend="mfscanf">mfscanf</link>
81 <link linkend="fscanfMat">fscanfMat</link>
84 <link linkend="mget">mget</link>
87 <link linkend="mgetstr">mgetstr</link>
90 <link linkend="mprintf">mprintf</link>
93 <link linkend="mput">mput</link>
96 <link linkend="mputstr">mputstr</link>
99 <link linkend="mscanf">mscanf</link>
102 <link linkend="mseek">mseek</link>
105 <link linkend="mtell">mtell</link>