<?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[DirectoryExists?]]></title><description><![CDATA[<p>Ich habe VC++ 6 und möchte ohne MFC prüfen, ob ein Verzeichnis existiert.. Wie am Besten?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/137122/directoryexists</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Jul 2026 18:47:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/137122.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 15 Feb 2006 13:27:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to DirectoryExists? on Wed, 15 Feb 2006 13:27:11 GMT]]></title><description><![CDATA[<p>Ich habe VC++ 6 und möchte ohne MFC prüfen, ob ein Verzeichnis existiert.. Wie am Besten?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/994828</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/994828</guid><dc:creator><![CDATA[Maiku]]></dc:creator><pubDate>Wed, 15 Feb 2006 13:27:11 GMT</pubDate></item><item><title><![CDATA[Reply to DirectoryExists? on Wed, 15 Feb 2006 13:46:54 GMT]]></title><description><![CDATA[<p>Erste Idee: mit FindFirstFile() suchen und anhand des Rückgabewertes auswerten, ob etwas gefunden wurde.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/994866</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/994866</guid><dc:creator><![CDATA[CStoll (off)]]></dc:creator><pubDate>Wed, 15 Feb 2006 13:46:54 GMT</pubDate></item><item><title><![CDATA[Reply to DirectoryExists? on Thu, 16 Feb 2006 18:17:00 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">WIN32_FIND_DATA wfd;

	HANDLE hFind = FindFirstFile(&quot;C:\\...&quot;, &amp;wfd);
	if (hFind == INVALID_HANDLE_VALUE) {
	   getch();
	   ExitProcess(0);	
	   return FALSE;
	}
		FindClose(hFind);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/996081</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/996081</guid><dc:creator><![CDATA[asdf3]]></dc:creator><pubDate>Thu, 16 Feb 2006 18:17:00 GMT</pubDate></item></channel></rss>