<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
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/"
> <channel><title>Comments on: Access Folder History With Folder Cache</title> <atom:link href="http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sun, 12 Feb 2012 04:50:20 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: MilesAhead</title><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/comment-page-1/#comment-958734</link> <dc:creator>MilesAhead</dc:creator> <pubDate>Sat, 23 Jan 2010 02:28:07 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/#comment-958734</guid> <description>btw, not related to this issue, but I just updated both FolderCache and ReOpen to fix a minor glitch in ListBox focus handling.  There&#039;s a link in the Readme files where you can always get the latest version directly from my site.  If you caused the focus to be shifted to a ListBox by selecting an item other than the first in the list, the first item would also be selected as if you had tabbed into the ListBox.  Now the first item is only selected if that is the one actually clicked or you use the tab key to change focus.</description> <content:encoded><![CDATA[<p>btw, not related to this issue, but I just updated both FolderCache and ReOpen to fix a minor glitch in ListBox focus handling.  There&#8217;s a link in the Readme files where you can always get the latest version directly from my site.  If you caused the focus to be shifted to a ListBox by selecting an item other than the first in the list, the first item would also be selected as if you had tabbed into the ListBox.  Now the first item is only selected if that is the one actually clicked or you use the tab key to change focus.</p> ]]></content:encoded> </item> <item><title>By: MilesAhead</title><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/comment-page-1/#comment-958342</link> <dc:creator>MilesAhead</dc:creator> <pubDate>Thu, 21 Jan 2010 22:03:19 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/#comment-958342</guid> <description>Addendum: I just checked the code again and the valid path checks are only performed just before the popup window opens.  Any entry that fails the test is removed.  You could suggest leaving network paths but even with some heuristics, checking for a valid path involves waits when the path is a network and it&#039;s not connected.  You end up waiting for a time-out which slows the window opening. It&#039;s a bit of a thorny issue and I had to write my own ValidPath() function to avoid long waits if just using FileExists() library function.
My best suggestion would be to devise a scheme maybe via a startup delay program or using batch(&quot;ping -n x 127.0.0.1 &gt; nul&quot; is  a good way to get a delay of x seconds in a .cmd batch file btw) to make sure your network is connected before you open the FolderCache or ReOpen popup window for the first time.
Hope this helps a bit.</description> <content:encoded><![CDATA[<p>Addendum: I just checked the code again and the valid path checks are only performed just before the popup window opens.  Any entry that fails the test is removed.  You could suggest leaving network paths but even with some heuristics, checking for a valid path involves waits when the path is a network and it&#8217;s not connected.  You end up waiting for a time-out which slows the window opening. It&#8217;s a bit of a thorny issue and I had to write my own ValidPath() function to avoid long waits if just using FileExists() library function.</p><p>My best suggestion would be to devise a scheme maybe via a startup delay program or using batch(&#8220;ping -n x 127.0.0.1 &gt; nul&#8221; is  a good way to get a delay of x seconds in a .cmd batch file btw) to make sure your network is connected before you open the FolderCache or ReOpen popup window for the first time.</p><p>Hope this helps a bit.</p> ]]></content:encoded> </item> <item><title>By: MilesAhead</title><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/comment-page-1/#comment-958337</link> <dc:creator>MilesAhead</dc:creator> <pubDate>Thu, 21 Jan 2010 21:24:28 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/#comment-958337</guid> <description>Oh btw, I think I see what may be happening.  Every time you bring up the FolderCache window, it checks if the folder path is valid.  If not, it is removed from the MRU list.  I don&#039;t do this on startup to give the network a chance to connect if you should have FolderCache in the StartUp to start when Windows starts.  Even so I found that my mapped network drives were sometimes getting erased because I manually map the drives using batch files.  To avoid this I&#039;ve changed my batch files to /map drives, then after a few seconds delay, I run FolderCache or ReOpen.  I have another batch that closes my program while the network drives are still mapped since it checks for valid paths on shutdown when it writes them out to the file.
It may simplify things if I skip the valid path check on shutdown since each path is checked every time the window opens anyway.. but the main reason is so that invalid paths don&#039;t take up a &quot;slot&quot; in the count of recent folders.  If you have your setting down at 10 and 5 of the folders were deleted at some point, it would reduce the functionality of the MRU list.</description> <content:encoded><![CDATA[<p>Oh btw, I think I see what may be happening.  Every time you bring up the FolderCache window, it checks if the folder path is valid.  If not, it is removed from the MRU list.  I don&#8217;t do this on startup to give the network a chance to connect if you should have FolderCache in the StartUp to start when Windows starts.  Even so I found that my mapped network drives were sometimes getting erased because I manually map the drives using batch files.  To avoid this I&#8217;ve changed my batch files to /map drives, then after a few seconds delay, I run FolderCache or ReOpen.  I have another batch that closes my program while the network drives are still mapped since it checks for valid paths on shutdown when it writes them out to the file.</p><p>It may simplify things if I skip the valid path check on shutdown since each path is checked every time the window opens anyway.. but the main reason is so that invalid paths don&#8217;t take up a &#8220;slot&#8221; in the count of recent folders.  If you have your setting down at 10 and 5 of the folders were deleted at some point, it would reduce the functionality of the MRU list.</p> ]]></content:encoded> </item> <item><title>By: MilesAhead</title><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/comment-page-1/#comment-958313</link> <dc:creator>MilesAhead</dc:creator> <pubDate>Thu, 21 Jan 2010 20:28:30 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/#comment-958313</guid> <description>I don&#039;t know why UNC filenames would not show on your machines.  They show on mine.  I added this note to the readme files for both FolderCache and ReOpen:
=========  Important Note  ===================
For the automatic monitor to work, Explorer Folder Options View Settings
should have &quot;Display the full path in the Title Bar&quot; and, if available,
&quot;Display the full path in the Address Bar&quot; checked. Also in XP make
sure under View Toolbars that Address Bar is enabled. After setting these
options, remember to push the &quot;Apply To All Folders&quot; button.
=========  Important Note  ===================
btw both FolderCache and ReOpen are implemented in AutoIt3, not AHK.
Thanks for using FolderCache.  It was the precursor to ReOpen which has a bit more functionality.</description> <content:encoded><![CDATA[<p>I don&#8217;t know why UNC filenames would not show on your machines.  They show on mine.  I added this note to the readme files for both FolderCache and ReOpen:</p><p>=========  Important Note  ===================</p><p>For the automatic monitor to work, Explorer Folder Options View Settings<br
/> should have &#8220;Display the full path in the Title Bar&#8221; and, if available,<br
/> &#8220;Display the full path in the Address Bar&#8221; checked. Also in XP make<br
/> sure under View Toolbars that Address Bar is enabled. After setting these<br
/> options, remember to push the &#8220;Apply To All Folders&#8221; button.</p><p>=========  Important Note  ===================</p><p>btw both FolderCache and ReOpen are implemented in AutoIt3, not AHK.</p><p>Thanks for using FolderCache.  It was the precursor to ReOpen which has a bit more functionality.</p> ]]></content:encoded> </item> <item><title>By: tg3793</title><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/comment-page-1/#comment-958178</link> <dc:creator>tg3793</dc:creator> <pubDate>Thu, 21 Jan 2010 11:14:36 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/#comment-958178</guid> <description>Hello Miles ahead. Like your script. But I am having a problem with it not capturing anything that has a UNC file name. There are lots of things that can cause UNC names to start apearing on a drive when you share it with other computers http://3.ly/2fc
Perhaps you might consider looking at the code of another AHK script that I use called &quot;Computer Usage&quot; http://3.ly/D22M. It handling UNC file names quite well. Of course I am only referencing it here to suggest there might be some code in there you can use.
Would it be possible for  &quot;Folder Cache&quot; to handle UNC File names as well?</description> <content:encoded><![CDATA[<p>Hello Miles ahead. Like your script. But I am having a problem with it not capturing anything that has a UNC file name. There are lots of things that can cause UNC names to start apearing on a drive when you share it with other computers http://3.ly/2fc</p><p>Perhaps you might consider looking at the code of another AHK script that I use called &#8220;Computer Usage&#8221; http://3.ly/D22M. It handling UNC file names quite well. Of course I am only referencing it here to suggest there might be some code in there you can use.</p><p>Would it be possible for  &#8220;Folder Cache&#8221; to handle UNC File names as well?</p> ]]></content:encoded> </item> <item><title>By: Cómo ver el historial de acceso a carpetas en Windows</title><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/comment-page-1/#comment-783745</link> <dc:creator>Cómo ver el historial de acceso a carpetas en Windows</dc:creator> <pubDate>Mon, 11 May 2009 17:01:43 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/#comment-783745</guid> <description>[...] Vía: Ghacks [...]</description> <content:encoded><![CDATA[<p>[...] Vía: Ghacks [...]</p> ]]></content:encoded> </item> <item><title>By: MilesAhead</title><link>http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/comment-page-1/#comment-744986</link> <dc:creator>MilesAhead</dc:creator> <pubDate>Sat, 25 Apr 2009 20:14:26 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/24/access-folder-history-with-folder-cache/#comment-744986</guid> <description>Hi. I&#039;m the author of FolderCache, MilesAhead.  Thanks for noticing my utility. I have updated the software to address issues you mention.  By default AutoIt3 List Control doesn&#039;t honor double-click or Enter key in the message loop.  So to keep the design simple I set it to launch selected folders when the Right Mouse Button is released or the Open Selected Button is pressed.  I added the Spin Button to allow for Max Folders adjustment in the range 16 to 64.  I try to avoid scrolling since this slows down user interaction.  A max somewhere around 24 entries should be ideal.  For permanent sets of folders to use together I have FavesSA which is a stand-alone Delphi 5 exe program. It saves and loads lists of folders, files and shortcuts similar to a text editor.  I wanted to do this popup Folder Cache so that I could use a wider window, avoiding horizontal scrolling to read long paths.  To be honest, I like using this one the most myself since it doesn&#039;t use any desktop real estate when not popped up.  The latest version is 1.51 and it is on the web site available for download.   I hope Windows users enjoy using Folder Cache. I know I hate when I close a folder only to have to open it again within a few seconds. :)  It should work on Windows XP or later.  Glad you like the concept.  :)</description> <content:encoded><![CDATA[<p>Hi. I&#8217;m the author of FolderCache, MilesAhead.  Thanks for noticing my utility. I have updated the software to address issues you mention.  By default AutoIt3 List Control doesn&#8217;t honor double-click or Enter key in the message loop.  So to keep the design simple I set it to launch selected folders when the Right Mouse Button is released or the Open Selected Button is pressed.  I added the Spin Button to allow for Max Folders adjustment in the range 16 to 64.  I try to avoid scrolling since this slows down user interaction.  A max somewhere around 24 entries should be ideal.  For permanent sets of folders to use together I have FavesSA which is a stand-alone Delphi 5 exe program. It saves and loads lists of folders, files and shortcuts similar to a text editor.  I wanted to do this popup Folder Cache so that I could use a wider window, avoiding horizontal scrolling to read long paths.  To be honest, I like using this one the most myself since it doesn&#8217;t use any desktop real estate when not popped up.  The latest version is 1.51 and it is on the web site available for download.   I hope Windows users enjoy using Folder Cache. I know I hate when I close a folder only to have to open it again within a few seconds. :)  It should work on Windows XP or later.  Glad you like the concept.  :)</p> ]]></content:encoded> </item> </channel> </rss>
