<?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[Pfad in URL umwandeln]]></title><description><![CDATA[<p>Hi an Alle,</p>
<p>gibt es in der MFC eine Klasse mit der ich einen absoluten pFad in ein URL Angabe umwandeln kann? In Der MSDN hab ich nix gefunden. Falls nicht wäre es schön wenn jemand wüsste wie man das sonst bewerkstelligen könnte.<br />
Mfg und besten Dank für die Anstrengung eurer grauen Zellen im Voraus<br />
CrazyP <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/5871/pfad-in-url-umwandeln</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 05:09:52 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/5871.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 21 May 2003 11:05:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Pfad in URL umwandeln on Wed, 21 May 2003 11:05:00 GMT]]></title><description><![CDATA[<p>Hi an Alle,</p>
<p>gibt es in der MFC eine Klasse mit der ich einen absoluten pFad in ein URL Angabe umwandeln kann? In Der MSDN hab ich nix gefunden. Falls nicht wäre es schön wenn jemand wüsste wie man das sonst bewerkstelligen könnte.<br />
Mfg und besten Dank für die Anstrengung eurer grauen Zellen im Voraus<br />
CrazyP <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/28489</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28489</guid><dc:creator><![CDATA[CrazyPlaya]]></dc:creator><pubDate>Wed, 21 May 2003 11:05:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pfad in URL umwandeln on Wed, 21 May 2003 11:11:00 GMT]]></title><description><![CDATA[<p>Gib ma n beispiel, hab keine ahnung was du machen willst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28490</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28490</guid><dc:creator><![CDATA[dEUs]]></dc:creator><pubDate>Wed, 21 May 2003 11:11:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pfad in URL umwandeln on Wed, 21 May 2003 13:50:00 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">CString strPath = _T(&quot;C:\\Windows\\ist\\doof\\&quot;);
CString strURL = strPath;
strURL.Replace('\\', '/');
strURL = _T(&quot;file:///&quot;) + strURL;

// strURL == &quot;file:///C:/Windows/ist/doof/&quot;

// natürlich müssen evtl noch Sonderzeichen berücksichtigt werden
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/28491</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28491</guid><dc:creator><![CDATA[Shaggy]]></dc:creator><pubDate>Wed, 21 May 2003 13:50:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pfad in URL umwandeln on Wed, 21 May 2003 23:46:00 GMT]]></title><description><![CDATA[<p>du musst dan noch nach Leerzeichen suchen;</p>
<p>kannst ja damit:</p>
<p>CString String = &quot;C:\\Windows\\System32\\notepad.exe&quot;;<br />
CString strUrlOut;<br />
for(int i=0;i&lt;String.GetLenght();i++)<br />
{<br />
if(Mid(i,1) == &quot; &quot;)<br />
{<br />
strUrlOut += &quot;%255c&quot;; //Glaube das ist das zeichen für Leerzeichen!<br />
}<br />
else<br />
{<br />
strUrlOut += Mid(i,1);<br />
}<br />
}<br />
MessageBox(strUrlOut);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28492</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28492</guid><dc:creator><![CDATA[Sven Bechler]]></dc:creator><pubDate>Wed, 21 May 2003 23:46:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pfad in URL umwandeln on Thu, 22 May 2003 12:13:00 GMT]]></title><description><![CDATA[<p>%20 glaub' ich.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28493</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28493</guid><dc:creator><![CDATA[Sgt. Nukem]]></dc:creator><pubDate>Thu, 22 May 2003 12:13:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pfad in URL umwandeln on Thu, 22 May 2003 14:16:00 GMT]]></title><description><![CDATA[<p>Danke das hat funktioniert. Bin euch sehr dankbar.<br />
MfG CrazyP <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/28494</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28494</guid><dc:creator><![CDATA[CrazyPlaya]]></dc:creator><pubDate>Thu, 22 May 2003 14:16:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pfad in URL umwandeln on Fri, 23 May 2003 11:25:00 GMT]]></title><description><![CDATA[<p>link wurde erst jetzt gefixt: <a href="http://www.codeguru.com/cpp_mfc/URLEncode.html" rel="nofollow">http://www.codeguru.com/cpp_mfc/URLEncode.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/28495</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28495</guid><dc:creator><![CDATA[dEUs]]></dc:creator><pubDate>Fri, 23 May 2003 11:25:00 GMT</pubDate></item></channel></rss>