<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Merlin&#039;s Delphi Forge &#187; folder</title>
	<atom:link href="http://www.delphifaq.net/tag/folder/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.delphifaq.net</link>
	<description>By a Programmer for Programmers...</description>
	<lastBuildDate>Sat, 13 Mar 2010 19:00:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Create Multiple Directories</title>
		<link>http://www.delphifaq.net/how-to-create-multiple-directories-2/</link>
		<comments>http://www.delphifaq.net/how-to-create-multiple-directories-2/#comments</comments>
		<pubDate>Thu, 16 Dec 1999 03:20:49 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[borland]]></category>
		<category><![CDATA[c program]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[codegear]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[delphi 4]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[force]]></category>
		<category><![CDATA[forcedirectories]]></category>
		<category><![CDATA[Kylix]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[mkdir]]></category>
		<category><![CDATA[mkdirmulti]]></category>
		<category><![CDATA[one time]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/how-to-create-multiple-directories-2</guid>
		<description><![CDATA[The standard MkDir() function can create only one directory, it can not create subdirectories at one time. This function allows you to create multiple directories (directories inside directories). Delphi 4+ have the ForceDirectories() routine which does the same thing. It is declared in the FileCtrl unit. uses SysUtils, FileCtrl; ... procedure MkDirMulti(sPath: string); begin if [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-create-multiple-directories-2/feed/</wfw:commentRss>
		<slash:comments>-2</slash:comments>
		</item>
		<item>
		<title>How to Get the Windows System Directory</title>
		<link>http://www.delphifaq.net/how-to-get-the-windows-system-directory/</link>
		<comments>http://www.delphifaq.net/how-to-get-the-windows-system-directory/#comments</comments>
		<pubDate>Thu, 16 Dec 1999 00:56:12 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[GetWindowsDirectory]]></category>
		<category><![CDATA[object pascal]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/faq/how-to-get-the-windows-system-directory</guid>
		<description><![CDATA[To found out the name of the Windows directory it&#8217;s best to use the Windows API GetSystemDirectory() function. Here&#8217;s the Delphi implementation: uses Windows; ... function GetSystemDir: string; const (* The length of the directory buffer. Usually 64 or even 16 is enough ** ** Must be DWORD type. *) dwLength: DWORD = 255; var [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-get-the-windows-system-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get the Windows Directory</title>
		<link>http://www.delphifaq.net/how-to-get-the-windows-directory/</link>
		<comments>http://www.delphifaq.net/how-to-get-the-windows-directory/#comments</comments>
		<pubDate>Thu, 16 Dec 1999 00:55:20 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[GetWindowsDirectory]]></category>
		<category><![CDATA[object pascal]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/faq/how-to-get-the-windows-directory</guid>
		<description><![CDATA[To found out the name of the Windows directory it&#8217;s best to use the Windows API GetWindowsDirectory() function. Here&#8217;s the Delphi implementation: uses Windows; ... function GetWindowsDir: string; const (* The length of the directory buffer. Usually 64 or even 16 is enough ** ** Must be DWORD type. *) dwLength: DWORD = 255; var [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-get-the-windows-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I Get Internet Explorer&#8217;s Favorites</title>
		<link>http://www.delphifaq.net/how-do-i-get-internet-explorers-favorites/</link>
		<comments>http://www.delphifaq.net/how-do-i-get-internet-explorers-favorites/#comments</comments>
		<pubDate>Wed, 15 Dec 1999 22:21:32 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[Internet / LAN]]></category>
		<category><![CDATA[accessing internet]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[borland]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[favorites folder]]></category>
		<category><![CDATA[filename path]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[getprivateprofilestring]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[internet explorer favorites]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[path string]]></category>
		<category><![CDATA[retrieve]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/how-do-i-get-internet-explorers-favorites</guid>
		<description><![CDATA[Accessing Internet Explorer favorites is not hard since they are nothing more than files and folders. All you have to basically do is find the IE Favorites folder, then read it&#8217;s structure and file list. Once this is done you will need to read the URL that&#8217;s in each of the files. Sounds easy? You [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-do-i-get-internet-explorers-favorites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Change the Default Project Directory</title>
		<link>http://www.delphifaq.net/how-to-change-the-default-project-directory/</link>
		<comments>http://www.delphifaq.net/how-to-change-the-default-project-directory/#comments</comments>
		<pubDate>Wed, 15 Dec 1999 22:06:24 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[Delphi / Kylix IDE]]></category>
		<category><![CDATA[borland]]></category>
		<category><![CDATA[coder]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[default project]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[designing]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Kylix]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[project directory]]></category>
		<category><![CDATA[properties dialog]]></category>
		<category><![CDATA[select properties]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/how-to-change-the-default-project-directory</guid>
		<description><![CDATA[You can&#8217;t really set this value from inside Delphi, but it&#8217;s still easy to change. All you have to do is open the Properties dialog for your Delphi shortcut in Start Menu, Desktop or Windows (right click the icon and select Properties). In the Start In field enter the directory that you wish to be [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-change-the-default-project-directory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Explore Your Project&#8217;s Directory</title>
		<link>http://www.delphifaq.net/how-to-explore-your-projects-directory/</link>
		<comments>http://www.delphifaq.net/how-to-explore-your-projects-directory/#comments</comments>
		<pubDate>Wed, 15 Dec 1999 22:02:32 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[Delphi / Kylix IDE]]></category>
		<category><![CDATA[add command]]></category>
		<category><![CDATA[borland]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[configure tools]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[explore]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tool options]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[visit]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/how-to-explore-your-projects-directory</guid>
		<description><![CDATA[When programming you may want to see your programs files and directories to change file names, add/delete files or just to control the application&#8217;s executable size. Here&#8217;s a simple solution to not have to launch Windows Explorer, and then click you way through your whole file system to you app&#8217;s directory. If you have a [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-explore-your-projects-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
