Hi I have a number of zip files. I would like to extract these and copy only specific ones to a folder. The list of required files is in a text file.
Any idea of the best way to achieve this
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
The custom transformer ZipExtractor can be used for extract zip files. You can use the transformer FeatureMerger to get the same names from files ( zipfiles * tex files ).
The TempPathnameCreator is very helpful if you prefer to unzip the entire contents before copying only the desired files to the target directory. Folders created by the TempPathnameCreator are automatically deleted when FME terminates.
The TempPathnameCreator is very helpful if you prefer to unzip the entire contents before copying only the desired files to the target directory. Folders created by the TempPathnameCreator are automatically deleted when FME terminates.
Thanks. I need to extract files from a dozen zip files. Would I need 12 zipExtractor for this or is there a more efficient way?