<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; folder monitor</title> <atom:link href="http://www.ghacks.net/tag/folder-monitor/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sat, 11 Feb 2012 17:32:23 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>PsychoFolder, Rule Based Folder Monitor</title><link>http://www.ghacks.net/2011/07/03/psychofolder-rule-based-folder-monitor/</link> <comments>http://www.ghacks.net/2011/07/03/psychofolder-rule-based-folder-monitor/#comments</comments> <pubDate>Sun, 03 Jul 2011 16:39:09 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[folder monitor]]></category> <category><![CDATA[monitor folder]]></category> <category><![CDATA[psychofolder]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=47345</guid> <description><![CDATA[There are lots of reasons why you&#8217;d want to monitor a folder on your system. Maybe it is a shared folder and you want to know if files are added, deleted or changed in the folder, or maybe you&#8217;d like to monitor your Internet download folder to copy specific files that you sometimes download to [...]]]></description> <content:encoded><![CDATA[<p>There are lots of reasons why you&#8217;d want to monitor a folder on your system. Maybe it is a shared folder and you want to know if files are added, deleted or changed in the folder, or maybe you&#8217;d like to monitor your Internet download folder to copy specific files that you sometimes download to another directory on your system.</p><p>PsychoFolder, despite the strange name, is a versatile rule based folder monitor for Windows. The program uses XML files to configure folder riles, which may put of users who never worked with these kind of files before.</p><p>The folder monitor ships with a sample rules file which you can edit to add your own rules to the program.</p><p>The program has been designed to trigger actions based on rules configured in the rules file. It is for instance possible to configure rules to unpack downloads automatically, to move specific files to another directory or to execute files when they are dropped into the folder.</p><p>The sample rules file that ships with the program has the following layout:</p><p><code>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br
/> &lt;RuleManager xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt;<br
/> &lt;Path&gt;E:\Downloads&lt;/Path&gt;<br
/> &lt;Rules&gt;<br
/> &lt;Rule&gt;<br
/> &lt;Name&gt;Unrar Files&lt;/Name&gt;<br
/> &lt;Run&gt;unrar e -y &quot;{FILE}&quot; &quot;{PATH}&quot;&lt;/Run&gt;<br
/> &lt;Extension&gt;.rar&lt;/Extension&gt;<br
/> &lt;KeyWait&gt;0&lt;/KeyWait&gt;<br
/> &lt;/Rule&gt;<br
/> &lt;Rule&gt;<br
/> &lt;Run&gt;cmd.exe /c move &quot;{FILE}&quot; &quot;E:\Media\&quot;&lt;/Run&gt;<br
/> &lt;Extension&gt;.divx&lt;/Extension&gt;<br
/> &lt;Name&gt;Move Divx Files&lt;/Name&gt;<br
/> &lt;KeyWait&gt;0&lt;/KeyWait&gt;<br
/> &lt;/Rule&gt;<br
/> &lt;Rule&gt;<br
/> &lt;Run&gt;&quot;E:\AVIAddXSubs.exe&quot; &quot;{FILE}&quot;&lt;/Run&gt;<br
/> &lt;Extension&gt;.srt&lt;/Extension&gt;<br
/> &lt;Name&gt;Add Subtitles&lt;/Name&gt;<br
/> &lt;SendKeys&gt;VK_TAB,VK_TAB,VK_TAB,VK_TAB,500,VK_RETURN,VK_RETURN&lt;/SendKeys&gt;<br
/> &lt;KeyWait&gt;1000&lt;/KeyWait&gt;<br
/> &lt;RuleWait&gt;5000&lt;/RuleWait&gt;<br
/> &lt;/Rule&gt;<br
/> &lt;/Rules&gt;<br
/> &lt;/RuleManager&gt;</code></p><ul><li>Path determines the folder that you want to monitor on your computer system.</li><li>Name a unique identifier</li><li>Run a command that you want executed</li><li>Extension the file extensions that should trigger the selected run command</li><li>SendKeys defines keys that you want to simulate, handy for gui based programs configured under run</li><li>KeyWait to wait a specific time in milliseconds before keys are send</li><li>RuleWait blocks the rule processing for the selected time in milliseconds</li></ul><p>The application adds an icon to the system tray on startup. A right-click displays a context menu with options to change the monitored folder, to select a new rules file and to browse the folder that is currently monitored. There is also an option to disable the monitoring of subfolders.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/07/folder-monitor.png" alt="folder monitor" title="folder monitor" width="206" height="180" class="alignnone size-full wp-image-47346" /></p><p>PsychoFolder has two issues that might keep the majority of users from using the program. The first is the complicated handling of the program. Especially the rules file could use a graphical user interface. The second is the fact that the program has not been updated since 2009, which usually means that the project is dead and no longer maintained by the developer. While it works fine at the moment, it may very well stop working after operating system updates or other system updates.</p><p>Windows users who would like to download <a
href="http://code.google.com/p/psychofolder/wiki/RulesXML">PsychoFolder</a> can download the latest version from the project&#8217;s Google Code website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/07/03/psychofolder-rule-based-folder-monitor/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Piles Lists Downloads, Recent Files, For Quick Access</title><link>http://www.ghacks.net/2010/07/02/piles-lists-downloads-recent-files-for-quick-access/</link> <comments>http://www.ghacks.net/2010/07/02/piles-lists-downloads-recent-files-for-quick-access/#comments</comments> <pubDate>Fri, 02 Jul 2010 06:49:12 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[downloads]]></category> <category><![CDATA[folder monitor]]></category> <category><![CDATA[piles]]></category> <category><![CDATA[recent files]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=27825</guid> <description><![CDATA[Most programs do not integrate well with Windows Explorer, the standard file browser of Windows. Files that are downloaded for instance are not specifically marked for easier access. That&#8217;s probably not a problem if you download a handful of files a week but if you download dozens or hundreds per day it is. Files are [...]]]></description> <content:encoded><![CDATA[<p>Most programs do not integrate well with Windows Explorer, the standard file browser of Windows. Files that are downloaded for instance are not specifically marked for easier access. That&#8217;s probably not a problem if you download a handful of files a week but if you download dozens or hundreds per day it is.</p><p>Files are usually dropped in a download directory that grows over time, some files get added, some deleted but the file count usually is high enough to make it more difficulty that it should be to locate the latest downloaded files.</p><p><span
id="more-27825"></span>But it is not only downloaded files that can be a problem. Basically any type of file that gets updated, think of log files, documents, music for instance.</p><p>While it is possible to sort by modification date it is not the best solution as it means to switch between different sorting options regularly as sorting by date makes it that much harder to locate files by name</p><p>Piles is a program for Windows 7 that solves the problem. It is basically a directory monitor that displays the most recent files of a directory in its interface.</p><p><object
width="560" height="340"><param
name="movie" value="http://www.youtube.com/v/OjYxzbTPegw&amp;hl=en_GB&amp;fs=1"></param><param
name="allowFullScreen" value="true"></param><param
name="allowscriptaccess" value="always"></param><embed
src="http://www.youtube.com/v/OjYxzbTPegw&amp;hl=en_GB&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p><p>The program integrates nicely with the Windows 7 Taskbar displaying all recent items in a jumplist. It has to be noted that Piles will only monitor one directory per instance that is opened and that it does not monitor files in subdirectories.</p><p>That&#8217;s a severe limitation, it would be great if Piles would include subdirectories and the possibility to add multiple unrelated directories to the same stack.</p><div
id="attachment_27826" class="wp-caption alignnone" style="width: 366px"><img
src="http://www.ghacks.net/wp-content/uploads/2010/07/piles.png" alt="piles" title="piles" width="356" height="410" class="size-full wp-image-27826" /><p
class="wp-caption-text">piles</p></div><p>A right-click on the Pile program icon in the Windows 7 Taskbar opens a context menu with options to create a new pile. A new Pile is created by specifying a folder to be monitored and a name.</p><p>The creation generates a second program icon for that folder. All icons look the same, it would be nice if the developer&#8217;s would add customization to distinguish between different Pile folders.</p><p>Piles for Windows is a clever program that can aid the user in finding downloads, documents and other files faster, providing that they have been added or modified in a folder that is monitored by the software program.</p><p><a
href="http://pilesforwindows.net/index.php">Piles</a> is only compatible with Windows 7 according to the developers. We have not tried running it in other Windows versions but figure that it won&#8217;t work because of the taskbar integration.</p><p>The program requires the Microsoft .net Framework 3.5.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/07/02/piles-lists-downloads-recent-files-for-quick-access/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Portable Folder Monitor The Folder Spy</title><link>http://www.ghacks.net/2010/05/26/portable-folder-monitor-the-folder-spy/</link> <comments>http://www.ghacks.net/2010/05/26/portable-folder-monitor-the-folder-spy/#comments</comments> <pubDate>Wed, 26 May 2010 10:39:32 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[file monitor]]></category> <category><![CDATA[folder monitor]]></category> <category><![CDATA[portable software]]></category> <category><![CDATA[the folder spy]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=25682</guid> <description><![CDATA[It can sometimes be important to monitor a folder in the Windows operating system to receive notifications if files are changed, added or deleted to it. The Folder Spy is a handy portable software program for Windows that can be used to monitor specific folders and their files. Folder Spy offers several advanced features despite [...]]]></description> <content:encoded><![CDATA[<p>It can sometimes be important to monitor a folder in the Windows operating system to receive notifications if files are changed, added or deleted to it.</p><p>The Folder Spy is a handy portable software program for Windows that can be used to monitor specific folders and their files.</p><p>Folder Spy offers several advanced features despite its tiny file size of 50 Kilobytes that can make it interesting for users looking for a folder monitor for Windows.</p><p>Folders can be added with a click on the Add item link in the main interface. Here it is possible to select a folder from the file browser, specify file filters and a program that should be executed whenever changes are noticed.</p><p><span
id="more-25682"></span>The file filter can be used to monitor only specific file types or file names in the selected folder while the program that can be executed could be used to automatically react on folder changes. A possible scenario would be to monitor a temp directory and run a temp cleaner on that directory regularly with the folder monitor.</p><p>Adding folders to the folder monitoring tool leads to a confusing situation. The settings window will remain open after adding folders to it. This window displays all the folders that are monitored while the main program window, which looks just like the settings window, will only display changes in the monitored folders.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/05/thefolderspy-499x249.png" alt="thefolderspy" title="thefolderspy" width="499" height="249" class="alignnone size-medium wp-image-25683" /></p><p>The program lists all changes made in the monitored folder for a period of 30 seconds in its interface. It is possible to save the information to a log file in that time. The Folder Spy does lack settings to adjust the interval in which the files are cleared from the interface. There is also no option to automatically save all changes to a file.</p><p>This limits the use of the program as the user needs to actively monitor the program window to see the changes in the monitored folders.</p><p><a
href="http://venussoftcorporation.blogspot.com/2010/05/thefolderspy.html">TheFolderSpy</a> can be downloaded from the developer&#8217;s website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/05/26/portable-folder-monitor-the-folder-spy/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Monitor Folders For File Changes And Additions</title><link>http://www.ghacks.net/2008/07/10/monitor-folders-for-file-changes-and-additions/</link> <comments>http://www.ghacks.net/2008/07/10/monitor-folders-for-file-changes-and-additions/#comments</comments> <pubDate>Thu, 10 Jul 2008 09:11:21 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Security]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[file monitor]]></category> <category><![CDATA[folder monitor]]></category> <category><![CDATA[network]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=5278</guid> <description><![CDATA[I was always puzzled that Microsoft did not integrate a software into Windows that would monitor specific folders for file changes and list the changes in a table to provide the user with means to analyze those changes. An application like this that would probably even pop up in real time informing the user that [...]]]></description> <content:encoded><![CDATA[<p>I was always puzzled that Microsoft did not integrate a software into Windows that would monitor specific folders for file changes and list the changes in a table to provide the user with means to analyze those changes. An application like this that would probably even pop up in real time informing the user that a file has been changed or added to a monitored directory would be helpful on many occasions. (yes there should be a turn off switch and an extensive configuration).</p><p>Say a user is surfing the web and suddenly the system informs him that an executable file has been replaced in his Windows folder. Should he be suspicious ? Yes absolutely. This could help fight spyware and malicious software right from the start.</p><p><a
href="http://www.mediachance.com/free/spythespy.htm">Spy the Spy</a> is a software for Windows that monitors folders and subfolders (and even network folders) for file changes and additions. Only selected file extensions are being reported though. I was not able to find a list of all file extensions but a quick test revealed that .exe, .dll and .bat file extensions where included in the warnings. There are probably a few more that will initiate a warning.</p><p><span
id="more-5278"></span><img
src="http://www.ghacks.net/wp-content/uploads/2008/07/monitor_windows_changes-500x315.jpg" alt="monitor windows changes" title="monitor windows changes" width="500" height="315" class="alignnone size-medium wp-image-5279" /></p><p>By default only the Windows folder and its subfolders are monitored by the application. Other folders can be added with ease though, it&#8217;s probably a good idea to add the Program Files folder and the Documents and Settings folder as well.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/07/file_warning.jpg" alt="file warning" title="file warning" width="465" height="327" class="alignnone size-medium wp-image-5280" /></p><p>Once a file gets added or changed in the monitored folders a warning will popup giving the user a handful of possibilities. The file can be moved to quarantine, the procedure can be logged and a System File Check can be initiated.</p><p>Spy The Spy is limited to reporting file changes and has a few limitations that make it a great addition to spyware tools. It cannot remove changes to the Windows Registry nor can it scan files to determine if they are indeed spyware or legit applications. Most importantly though it cannot deny read or write access to files and a file that produces a warning is already running on the system.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/07/10/monitor-folders-for-file-changes-and-additions/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>
