<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://www.jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://www.jackxiang.com/post//</link>
<title><![CDATA[c++ remove函数]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Mon, 17 Mar 2008 03:40:40 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	remove function <br/>int remove ( const char * filename ); &lt;cstdio&gt; <br/><br/>Remove file<br/><br/>Deletes the file whose name is specified in filename.<br/>This is an operation performed directly on a file; No streams are involved in the operation.<br/><br/><br/>Parameters<br/>filename <br/>C string containing the name of the file to be deleted. This paramenter must follow the file name specifications of the running environment and can include a path if the system supports it. <br/><br/>Return value<br/>If the file is successfully deleted, a zero value is returned.<br/>On failure, a nonzero value is reurned and the errno variable is set to the corresponding error code. Error codes are numerical values representing the type of failure occurred. A string interpreting this value can be printed to the standard error stream by a call to perror.<br/><br/>Example<br/>/* remove example: remove myfile.txt */<br/>#include &lt;stdio.h&gt;<br/><br/>int main ()<br/>{<br/>&nbsp;&nbsp;if( remove( &quot;myfile.txt&quot; ) != 0 )<br/>&nbsp;&nbsp;&nbsp;&nbsp;perror( &quot;Error deleting file&quot; );<br/>&nbsp;&nbsp;else<br/>&nbsp;&nbsp;&nbsp;&nbsp;puts( &quot;File successfully deleted&quot; );<br/>&nbsp;&nbsp;return 0;<br/>}<br/> <br/><br/>If the file example.txt existed before the execution and we had write access to it, then the file will be deleted and this message will be written to stdout:<br/>File successfully deleted<br/><br/>Otherwise, a message similar to this will be written to stderr:<br/>Error deleting file: No such file or directory<br/><br/><br/>See also<br/>rename Rename file (function) <br/>
]]>
</description>
</item><item>
<link>http://www.jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] c++ remove函数]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>