If you have a new question you’d like our support staff to post a response to, please visit our customer community, GoAnywhere Insiders, to pose the question in our Discussion Boards. We have a thread “Ask Our Tech Experts” that our support team monitors on a regular basis, or you can start a new discussion where other GoAnywhere users and support staff can weigh in. Log in or create your new account at
https://insiders.goanywhere.com.
If you need an immediate response, please create a support ticket or contact our support team by email at
[email protected].
-
GBDickinson
- Posts: 4
- Joined: Fri Aug 05, 2016 5:32 pm
- Location: Birmingham, AL
I'm trying to build a regular expression for a file monitor, and I don't seem to be having much luck. I need an expression that will return any file paths that have the string "OUTBOX" in them, and that end in either "csv", "txt", or "ack". I used the site
https://regexr.com/ to build this expression:
But my monitor still doesn't return any files. Am I using the correct syntax for GoAnywhere?
-
Support_Josh
- Posts: 12
- Joined: Thu Feb 16, 2017 11:20 am
You can achieve this by using a recursive Monitor that points at the root directory for the subset of folders in question. This will get the list of all files passed from the monitor to the Project. Once you have passed the file list to the Project via the Monitor, you can filter results on specific directories using logic tasks. The ${Contains()} function inside of the Project will determine if the file list contains any files in a specific folder.