<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Ordner kopieren?]]></title><description><![CDATA[<p>Hi,</p>
<p>hat jemand von euch einen Code-Schnippel wie man einen Ordner mit der WinAPI kopieren kann?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/89260/ordner-kopieren</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 17:02:05 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/89260.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 18 Oct 2004 08:37:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Ordner kopieren? on Mon, 18 Oct 2004 08:37:05 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>hat jemand von euch einen Code-Schnippel wie man einen Ordner mit der WinAPI kopieren kann?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631310</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631310</guid><dc:creator><![CDATA[---]]></dc:creator><pubDate>Mon, 18 Oct 2004 08:37:05 GMT</pubDate></item><item><title><![CDATA[Reply to Ordner kopieren? on Mon, 18 Oct 2004 08:42:11 GMT]]></title><description><![CDATA[<p>SHFILEOPSTRUCT foCopy;</p>
<p>foCopy.hwnd = NULL;<br />
foCopy.wFunc = FO_COPY;<br />
foCopy.pFrom = strSource;<br />
foCopy.pTo = strDest;<br />
foCopy.fFlags = FOF_NOCONFIRMMKDIR | FOF_NOCONFIRMATION | FOF_NOERRORUI| FOF_SILENT;<br />
foCopy.fAnyOperationsAborted = FALSE;<br />
foCopy.hNameMappings = NULL;<br />
foCopy.lpszProgressTitle = NULL;</p>
<p>if(SHFileOperation(&amp;foCopy) == 0)<br />
{<br />
// Vorgang war erfolgreich<br />
return true;<br />
}<br />
else<br />
{<br />
// es gab einen Fehler<br />
return false;<br />
}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631316</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631316</guid><dc:creator><![CDATA[the_alien]]></dc:creator><pubDate>Mon, 18 Oct 2004 08:42:11 GMT</pubDate></item><item><title><![CDATA[Reply to Ordner kopieren? on Mon, 18 Oct 2004 08:45:10 GMT]]></title><description><![CDATA[<p>hm und was geb ich da nun genau als strSource und strDest an?</p>
<p>&quot;c:\\temp\&quot; bzw. &quot;d:\\temp2\&quot;?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631321</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631321</guid><dc:creator><![CDATA[---]]></dc:creator><pubDate>Mon, 18 Oct 2004 08:45:10 GMT</pubDate></item><item><title><![CDATA[Reply to Ordner kopieren? on Mon, 18 Oct 2004 09:57:38 GMT]]></title><description><![CDATA[<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/structures/shfileopstruct.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/structures/shfileopstruct.asp</a></p>
<p>Ich glaube du müssetes &quot;C:\\temp\*.*&quot; schreiben um den ganzen Ordner zu kopieren. Bin mir aber nicht so sicher gerade.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631377</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631377</guid><dc:creator><![CDATA[the_alien]]></dc:creator><pubDate>Mon, 18 Oct 2004 09:57:38 GMT</pubDate></item></channel></rss>