...
We can use the Supersede utility to move the earlier revisions to an Archived
folder by configuring the following rule in a .supersede-config
file in the 📁P:\Projects\P123
folder:
...
Code Block | ||
---|---|---|
| ||
{ "Supersede": { "Copy": { "Enabled": true, "Path": "..\\Current" }, "Supersede": { "Enabled": true, "Mode": "Move", "Path": "..\\Superseded" }, "Rules": [ { "Pattern": "(?<SheetNumber>.+) - (?<SheetName>.+) \\((?<Revision>.+)\\)", "Extensions": [ ".pdf" ], "Supersede": { "MatchFields": [ "SheetNumber" ] } }, { "Pattern": "(?<SheetNumber>.+) \\((?<Revision>.+)\\)", "Extensions": [ ".dwg" ], "Supersede": { "MatchFields": [ "SheetNumber" ] } } ] } } |
If we have a special project where we don’t want to keep superseded files (because they will remain in their initial location anyway), then we could use a folder specific .supersede-config
file with the following configuration:
...