Suppose one folder ‘i.e. root’ has five Subfolders in parallel
Ex.
|-- customername1
|-- customername2
/root ----------|-- customername3
|-- customername4
|-- customername5
Each subfolder further has subfolders:
Ex.
/root/customername1
|-- upload1
|--cd1/manifest.xml
User can use following parameter in file event
File Base Location: /root
File Include Criteria: */*/*/manifest.xml
Here:
First * is for all folders at same level of customername1
Second * is for all folders at the level of upload1
Third * is for all folders at the level of cd1
The above File Include Criteria is defined assuming that the manifest.xml file will always be on the same hierarchy level (e.g. manifest.xml).
Now if there are chances the manifest.xml file can be in other hierarchy, for example in Upload1 folder or in Customername1 folder, then you need to define File Include Criteria for each level separated by comma.
For Example:
Manifest.xml,*/manifest.xml,*/*/manifest.xml,*/*/*/manifest.xml
Comments
0 comments
Article is closed for comments.