Use the following rules to write patterns for file groups:
• | * indicates any number of characters. |
• | <1> .. <9> indicates a repeating group of characters. |
• | Use the file extension such as .docx, .pdf, and so on. |
Examples:
• | A group with a *.* pattern captures all file types. |
• | A group with a *.txt pattern captures only files with a .txt extension. |
• | A group with the two file extension patterns: hplc<1>.pdf and weight<1>.pdf, captures two file types, one that begins with hplc and the other with weight. In this case the SDMS Grabber will capture files that have both the same ending and same extension, such as "hplc567.pdf" and "weight567.pdf". |
|