home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / fsshr64.zip / ScriptFilterSettings.txt < prev   
Text File  |  2009-07-31  |  7KB  |  153 lines

  1.            Folder Synchronize Command Script Syntax (Ver 3.0)
  2.  
  3.                      FILTER SETTINGS FOR SCRIPTS
  4.  
  5.                         Funduc Software, Inc
  6.                         Copyright 1997-2009
  7.       http://www.funduc.comááááhttp://www.searchandreplace.com
  8.         support@Funduc.com áááásupport@searchandreplace.comá
  9.  
  10. # and ' are the comment characters for scripts but this file is
  11. NOT a sample script. DO NOT submit this file to the program as a
  12. script.
  13.  
  14. Here are some details and example settings for the various filter
  15. switches. Please note that there is a slight difference in the
  16. switch verbs with the two syntax forms:
  17.  
  18.   Folder Synchronize Form  Original Syntax Form
  19.   -----------------------  -------------------------
  20.   Skip Files Mask=         Skip Files Mask= 
  21.   Ignore Attributes=       Ignored Attributes Mask=
  22.  
  23. The file skip, attribute, and reverse filter swtiches work in
  24. combination with each other. The number of combinations of values
  25. is extensive. Some example settings are below. Additional settings
  26. are possible. Write support@funduc.com if you need help.;-)
  27.  
  28. # *** SIZE & DATE EXCLUDE FILTERS ***
  29. # Size & date filters exclude files by size &/or date. Any files
  30. # that are less than the minimum size (in bytes) will be excluded
  31. # from the operation. If you use Reverse Filters=1, the settings
  32. # work as 'include' filters. Dates use the format specified in
  33. # Control Panel (Regional Settings). Leave blank or omit entirely if
  34. # you want no setting.
  35.  
  36. # Also note that you can use the string, %%today%%, for the two 
  37. # date filters. When specified, %%today%% automatically uses the
  38. # current computer date for the respective filter setting. You can
  39. # add or subtract days by specifying a +/- value before the ending
  40. # %%. Examples: %%today-5%% uses a date filter of the current date
  41. # minus 5 days; %%today+1%% adds one day to the current date.
  42.  
  43. # Min Size Filter=0
  44. # Max Size Filter=100000
  45. # Min Date Filter=8/21/2001
  46. # Max Date Filter=8/23/2004
  47.  
  48. # *** REVERSE FILTERS ***
  49. # Reverse filters= is used to make the other filter switches
  50. # function as exlude or include filters. For example, Reverse
  51. # Filters=0 & Max Date Filter=01/01/2000 excludes all files with a
  52. # stamp after Jan 01, 2000. Reverse Filters=1 changes this to
  53. # include only files dated Jan 01, 2000 or after.
  54. # The values are: 
  55. # 0 = Do not use Reverse Filtering.
  56. # 1 = Reverse Filter mode enabled.
  57. # If not specified, Default = 0.
  58. Reverse Filters=0
  59.  
  60. # *** FILE & DIRECTORY ATTRIBUTE FILTERS ****
  61. #
  62. # The Skip Files Mask= and Ignore Attributes= switches are used
  63. # together, in conjunction with Reverse Filters= to exclude/include
  64. # some file types in the operation. 
  65. #
  66. # The default values of Skip Files Mask=0 & Ignore Attributes=55
  67. # mean no files or subdirs are filtered.  If you wish to use these
  68. # defaults it is not necessary to specify these switches. 
  69. #
  70. # Note that files can have zero, one, or more attributes at the same
  71. # time.  For example, a file could be set as Read-Only, Archive, System. 
  72. # Or it could be as just Read-Only.  Or it could have no attributes 
  73. # specified. 
  74. #
  75. # Use the below list for some common settings.  The convention
  76. # is: Read-Only - R
  77. #     Hidden - H
  78. #     System - S
  79. #     Archive - A
  80. #
  81. # Other combinations are possible. The logic behind the number values
  82. # is complex and difficult to explain in words.  If there is a setting
  83. # you need that is not listed below you can use our freeware 
  84. # Folder Synch Script Editor to generate the code you need or write
  85. # support@funduc.com.  Links to the Folder Synch Script Editor can be 
  86. # found on http://www.funduc.com or http://www.searchandreplace.com
  87.  
  88. # Include R (+ any other attribute)         # Exclude R (+ any other attribute)
  89. Skip Files Mask=1                           Skip Files Mask=1
  90. Ignore Attributes=54                        Ignore Attributes=54
  91. Reverse Filters=1                           Reverse Filters=0
  92.  
  93. # Include R (sole attribute)                # Exclude R (sole attribute)
  94. Skip Files Mask=1                           Skip Files Mask=1
  95. Ignore Attributes=16                        Ignore Attributes=16
  96. Reverse Filters=1                           Reverse Filters=0
  97.  
  98. # Include A (+ any other attribute)         # Exclude A (+ any other attribute)
  99. Skip Files Mask=32                          Skip Files Mask=32
  100. Ignore Attributes=23                        Ignore Attributes=23
  101. Reverse Filters=1                           Reverse Filters=0
  102.  
  103. # Include A (sole attribute)                # Exclude A (sole attribute)
  104. Skip Files Mask=32                          Skip Files Mask=32
  105. Ignore Attributes=16                        Ignore Attributes=16
  106. Reverse Filters=1                           Reverse Filters=0
  107.  
  108. # Include S (+ any other attribute)         # Exclude S (+ any other attribute)
  109. Skip Files Mask=4                           Skip Files Mask=4
  110. Ignore Attributes=51                        Ignore Attributes=51
  111. Reverse Filters=1                           Reverse Filters=0
  112.  
  113. # Include S (sole attribute)                # Exclude S (sole attribute)
  114. Skip Files Mask=4                           Skip Files Mask=4
  115. Ignore Attributes=16                        Ignore Attributes=16
  116. Reverse Filters=1                           Reverse Filters=0
  117.  
  118. # Include H (+ any other attribute)         # Exclude H (+ any other attribute)
  119. Skip Files Mask=2                           Skip Files Mask=2
  120. Ignore Attributes=53                        Ignore Attributes=53
  121. Reverse Filters=1                           Reverse Filters=0
  122.  
  123. # Include H (sole attribute)                # Exclude H (sole attribute)
  124. Skip Files Mask=2                           Skip Files Mask=2
  125. Ignore Attributes=16                        Ignore Attributes=16
  126. Reverse Filters=1                           Reverse Filters=0
  127.  
  128. # Include R & H (+ any other attribute)     # Exclude R & H (+ any other attribute)
  129. Skip Files Mask=3                           Skip Files Mask=3
  130. Ignore Attributes=52                        Ignore Attributes=52
  131. Reverse Filters=1                           Reverse Filters=0
  132.  
  133. # Include R & H                             # Exclude R & H
  134. Skip Files Mask=3                           Skip Files Mask=3
  135. Ignore Attributes=16                        Ignore Attributes=16
  136. Reverse Filters=1                           Reverse Filters=0
  137.  
  138. # Include R, H, & S (+ any other attribute) # Exclude R, H, & S (+ any other attribute)
  139. Skip Files Mask=7                           Skip Files Mask=7
  140. Ignore Attributes=48                        Ignore Attributes=48
  141. Reverse Filters=1                           Reverse Filters=0
  142.  
  143. # Include R, H, & S                         # Exclude R, H, & S
  144. Skip Files Mask=7                           Skip Files Mask=7
  145. Ignore Attributes=16                        Ignore Attributes=16
  146. Reverse Filters=1                           Reverse Filters=0
  147.  
  148. # Include files with No Attribute Setting   # Exclude files with No Attribute Setting
  149. Skip Files Mask=0                           Skip Files Mask=0
  150. Ignore Attributes=16                        Ignore Attributes=16
  151. Reverse Filters=1                           Reverse Filters=0
  152.  
  153.