InterviewSolution
Saved Bookmarks
| 1. |
How To Send Only Certain Types Of File From One Directory To Another In Mule ? |
|
Answer» Use the below element in file inbound to filter certain TYPES of files. <file:filename-wildcard-filter pattern="file*.XML"/></file:inbound-endpoint> pattern indicates what pattern of file names should move from ONE directory to ANOTHER directory. Use the below element in file inbound to filter certain types of files. <file:filename-wildcard-filter pattern="file*.xml"/></file:inbound-endpoint> pattern indicates what pattern of file names should move from one directory to another directory. |
|