Package org.eclipse.aether.spi.io
Interface FileProcessor
public interface FileProcessor
A utility component to perform file-based operations.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceA listener object that is notified for every progress made while copying files. -
Method Summary
Modifier and TypeMethodDescriptionvoidCopies the specified source file to the given target file.longcopy(File source, File target, FileProcessor.ProgressListener listener) Copies the specified source file to the given target file.booleanCreates the directory named by the given abstract pathname, including any necessary but nonexistent parent directories.voidMoves the specified source file to the given target file.readChecksum(File checksumFile) Reads checksum from specified file.voidwrite(File target, InputStream source) Writes the given stream to a file.voidWrites the given data to a file.voidwriteChecksum(File checksumFile, String checksum) Writes checksum to specified file.
-
Method Details
-
mkdirs
Creates the directory named by the given abstract pathname, including any necessary but nonexistent parent directories. Note that if this operation fails it may have succeeded in creating some of the necessary parent directories.- Parameters:
directory- The directory to create, may benull.- Returns:
trueif and only if the directory was created, along with all necessary parent directories;falseotherwise
-
write
Writes the given data to a file. UTF-8 is assumed as encoding for the data. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Parameters:
target- The file to write to, must not benull. This file will be overwritten.data- The data to write, may benull.- Throws:
IOException- If an I/O error occurs.
-
write
Writes the given stream to a file. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Parameters:
target- The file to write to, must not benull. This file will be overwritten.source- The stream to write to the file, must not benull.- Throws:
IOException- If an I/O error occurs.
-
move
Moves the specified source file to the given target file. If the target file already exists, it is overwritten. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Parameters:
source- The file to move from, must not benull.target- The file to move to, must not benull.- Throws:
IOException- If an I/O error occurs.
-
copy
Copies the specified source file to the given target file. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Parameters:
source- The file to copy from, must not benull.target- The file to copy to, must not benull.- Throws:
IOException- If an I/O error occurs.
-
copy
Copies the specified source file to the given target file. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Parameters:
source- The file to copy from, must not benull.target- The file to copy to, must not benull.listener- The listener to notify about the copy progress, may benull.- Returns:
- The number of copied bytes.
- Throws:
IOException- If an I/O error occurs.
-
readChecksum
Reads checksum from specified file.- Throws:
IOException- in case of any IO error.- Since:
- 1.8.0
-
writeChecksum
Writes checksum to specified file.- Throws:
IOException- in case of any IO error.- Since:
- 1.8.0
-