Can someone help me find a solution to this seemingly common problem?
Every month my team has to run a process contained in a consistently defined directory. For example, the process run in January 2017 has files contained in the following sample directory structure:
Parent folder:
c:\2017_Jan\
subfolders:
input\
output\
analysis\
The files and sub-folders under the directory are named the same each month. The files that feed my workflow are in the same sub-folders each month. The only thing that changes is the main directory folder. For example:
c:\2017_Jan\input\INPUT_A.csv
c:\2017_Feb\input\INPUT_A.csv
etc.
Side note: I think I want the parent directory to be a text input because it will be quicker to change the small portion of the file path than to point to the folder.
Thanks in advance!!