Package de.unkrig.commons.file.filetransformation

This package contains classes and interfaces that deal with transforming a file, file tree or ZIP file into another file, file tree or ZIP file.

See:
          Description

Interface Summary
DirectoryMembersTransformer Transforms the members of a directory.
FileAdder Adds a given file to 'something'.
FileTransformations.ArchiveCombiner  
FileTransformations.DirectoryCombiner  
FileTransformations.NameAndContents  
FileTransformer  
 

Class Summary
DirectoryTransformer  
FileAdderUtil Various FileAdder-related utility methods.
FileContentsTransformer A FileTransformer that transforms a file be feeding its contents through a ContentsTransformer.
FileTransformations Various FileTransformer-related utility methods.
ProxyFileTransformer A file transformer which delegates to the file transformer specified by ProxyFileTransformer.set(FileTransformer).
SelectiveFileTransformer A FileTransformer that feeds the file to the trueDelegate iff the path matches a given Predicate, and otherwise to the falseDelegate.
 

Enum Summary
FileTransformer.Mode  
 

Package de.unkrig.commons.file.filetransformation Description

This package contains classes and interfaces that deal with transforming a file, file tree or ZIP file into another file, file tree or ZIP file. Simple applications are a COPY or a PATCH tool.

Most applications can be implemented with the utility methods of FileTransformations.