You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
4.0KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <title>remove (The Red Hat newlib C Library)</title>
  7. <meta name="description" content="remove (The Red Hat newlib C Library)">
  8. <meta name="keywords" content="remove (The Red Hat newlib C Library)">
  9. <meta name="resource-type" content="document">
  10. <meta name="distribution" content="global">
  11. <meta name="Generator" content="makeinfo">
  12. <link href="index.html#Top" rel="start" title="Top">
  13. <link href="Document-Index.html#Document-Index" rel="index" title="Document Index">
  14. <link href="Document-Index.html#SEC_Contents" rel="contents" title="Table of Contents">
  15. <link href="Stdio.html#Stdio" rel="up" title="Stdio">
  16. <link href="rename.html#rename" rel="next" title="rename">
  17. <link href="putwchar.html#putwchar" rel="prev" title="putwchar">
  18. <style type="text/css">
  19. <!--
  20. a.summary-letter {text-decoration: none}
  21. blockquote.indentedblock {margin-right: 0em}
  22. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  23. blockquote.smallquotation {font-size: smaller}
  24. div.display {margin-left: 3.2em}
  25. div.example {margin-left: 3.2em}
  26. div.lisp {margin-left: 3.2em}
  27. div.smalldisplay {margin-left: 3.2em}
  28. div.smallexample {margin-left: 3.2em}
  29. div.smalllisp {margin-left: 3.2em}
  30. kbd {font-style: oblique}
  31. pre.display {font-family: inherit}
  32. pre.format {font-family: inherit}
  33. pre.menu-comment {font-family: serif}
  34. pre.menu-preformatted {font-family: serif}
  35. pre.smalldisplay {font-family: inherit; font-size: smaller}
  36. pre.smallexample {font-size: smaller}
  37. pre.smallformat {font-family: inherit; font-size: smaller}
  38. pre.smalllisp {font-size: smaller}
  39. span.nolinebreak {white-space: nowrap}
  40. span.roman {font-family: initial; font-weight: normal}
  41. span.sansserif {font-family: sans-serif; font-weight: normal}
  42. ul.no-bullet {list-style: none}
  43. -->
  44. </style>
  45. </head>
  46. <body lang="en">
  47. <a name="remove"></a>
  48. <div class="header">
  49. <p>
  50. Next: <a href="rename.html#rename" accesskey="n" rel="next">rename</a>, Previous: <a href="putwchar.html#putwchar" accesskey="p" rel="prev">putwchar</a>, Up: <a href="Stdio.html#Stdio" accesskey="u" rel="up">Stdio</a> &nbsp; [<a href="Document-Index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Document-Index.html#Document-Index" title="Index" rel="index">Index</a>]</p>
  51. </div>
  52. <hr>
  53. <a name="remove_002d_002d_002ddelete-a-file_0027s-name"></a>
  54. <h3 class="section">4.52 <code>remove</code>&mdash;delete a file&rsquo;s name</h3>
  55. <a name="index-remove"></a>
  56. <a name="index-_005fremove_005fr"></a>
  57. <p><strong>Synopsis</strong>
  58. </p><div class="example">
  59. <pre class="example">#include &lt;stdio.h&gt;
  60. int remove(char *<var>filename</var>);
  61. int _remove_r(struct _reent *<var>reent</var>, char *<var>filename</var>);
  62. </pre></div>
  63. <p><strong>Description</strong><br>
  64. Use <code>remove</code> to dissolve the association between a particular
  65. filename (the string at <var>filename</var>) and the file it represents.
  66. After calling <code>remove</code> with a particular filename, you will no
  67. longer be able to open the file by that name.
  68. </p>
  69. <p>In this implementation, you may use <code>remove</code> on an open file without
  70. error; existing file descriptors for the file will continue to access
  71. the file&rsquo;s data until the program using them closes the file.
  72. </p>
  73. <p>The alternate function <code>_remove_r</code> is a reentrant version. The
  74. extra argument <var>reent</var> is a pointer to a reentrancy structure.
  75. </p>
  76. <br>
  77. <p><strong>Returns</strong><br>
  78. <code>remove</code> returns <code>0</code> if it succeeds, <code>-1</code> if it fails.
  79. </p>
  80. <br>
  81. <p><strong>Portability</strong><br>
  82. ANSI C requires <code>remove</code>, but only specifies that the result on
  83. failure be nonzero. The behavior of <code>remove</code> when you call it on an
  84. open file may vary among implementations.
  85. </p>
  86. <p>Supporting OS subroutine required: <code>unlink</code>.
  87. </p>
  88. <br>
  89. </body>
  90. </html>