Thread: Archiver
View Single Post
Old 09-27-2011, 03:36 AM  
jeza
Senior Member
 
jeza's Avatar
 
Join Date: May 2003
Posts: 530
Default

like for include or exclude specific folders by their names?
Right now you can exclude folders that start with specified string.
Code:
  <task>
    <skipPattern>.</skipPattern>
    <skipPattern>_old</skipPattern>
    <status>Enabled</status>
    <actionType>Move</actionType>
    <source>E:\\temp\\TestFiles</source>
    <destination>E:\\temp\\archive</destination>
    <action id="TotalFolderCount">
      <value>21</value>
      <minFolderAction>5</minFolderAction>
    </action>
  </task>
This will skip all folders that start with "." or "_old"
jeza is offline   Reply With Quote