|
Boost-Commit : |
From: bdawes_at_[hidden]
Date: 2008-06-29 22:06:28
Author: bemandawes
Date: 2008-06-29 22:06:28 EDT (Sun, 29 Jun 2008)
New Revision: 46881
URL: http://svn.boost.org/trac/boost/changeset/46881
Log:
Fix ticket #1971, remove_all not documented
Text files modified:
trunk/libs/filesystem/doc/reference.html | 23 +++++++++++++++++------
1 files changed, 17 insertions(+), 6 deletions(-)
Modified: trunk/libs/filesystem/doc/reference.html
==============================================================================
--- trunk/libs/filesystem/doc/reference.html (original)
+++ trunk/libs/filesystem/doc/reference.html 2008-06-29 22:06:28 EDT (Sun, 29 Jun 2008)
@@ -2156,9 +2156,8 @@
</blockquote>
<pre>template <class Path> bool remove(const Path& p);</pre>
<blockquote>
- <p><i>Precondition:</i> <code>!p.empty()</code></p>
- <p><i>Effects:</i> Attempts to delete the file <code>p</code> resolves
- to,
+ <p><i>Effects:</i> Deletes the file <code>p</code> resolves
+ to if it exists,
as if by<i> POSIX </i><code>
<a href="http://www.opengroup.org/onlinepubs/000095399/functions/link.html">
remove()</a></code>.</p>
@@ -2167,11 +2166,23 @@
<p><i>Postcondition:</i> <code>!exists(p)</code></p>
<p><i>Throws:</i> <code>basic_filesystem_error<Path></code> if:</p>
<ul>
- <li><code>p.empty() || (exists(p) && is_directory(p) && !empty(p))</code>.</li>
+ <li><code>exists(p) && is_directory(p) && !empty(p)</code>.</li>
<li><i>Effects</i> fails for any reason other than because <code>p</code>
does not resolve to an existing file.</li>
</ul>
- <p>[<i>Note:</i> A symbolic link is itself removed, rather than what it
+ <p>[<i>Note:</i> A symbolic link is itself removed, rather than the file it
+ resolves to being removed. <i>-- end note</i>]</p>
+</blockquote>
+<pre>template <class Path> unsigned long remove_all(const Path& p);</pre>
+<blockquote>
+ <p><i>Effects:</i> Recursively deletes the contents of p if it exists,
+ then deletes file <code>p</code> itself,
+ as if by<i> POSIX </i><code>
+ <a href="http://www.opengroup.org/onlinepubs/000095399/functions/link.html">
+ remove()</a></code>.</p>
+ <p><i>Returns:</i> The number of files removed.</p>
+ <p><i>Postcondition:</i> <code>!exists(p)</code></p>
+ <p>[<i>Note:</i> A symbolic link is itself removed, rather than the file it
resolves to being removed. <i>-- end note</i>]</p>
</blockquote>
<pre>template <class Path1, class Path2> void rename(const Path1& from_p, const Path2& to_p);</pre>
@@ -3057,7 +3068,7 @@
<p>Distributed under the Boost Software License, Version 1.0. See
<a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a></p>
<p>Revised
-<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->24 April 2008<!--webbot bot="Timestamp" endspan i-checksum="28390" --></p>
+<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->29 June 2008<!--webbot bot="Timestamp" endspan i-checksum="17622" --></p>
</body>
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk