Package com.mku.fs.drive.utils
Class FileCommander.BatchImportOptions
- java.lang.Object
-
- com.mku.fs.drive.utils.FileCommander.BatchImportOptions
-
- Enclosing class:
- FileCommander
public static class FileCommander.BatchImportOptions extends java.lang.Object
Batch import options
-
-
Field Summary
Fields Modifier and Type Field Description Function<IFile,java.lang.String>
autoRename
Callback when a file with the same name existsboolean
deleteSource
Delete the source file when complete.boolean
integrity
True to enable integrityBiConsumer<IFile,java.lang.Exception>
onFailed
Callback when import failsConsumer<FileCommander.RealFileTaskProgress>
onProgressChanged
Callback when progress changes
-
Constructor Summary
Constructors Constructor Description BatchImportOptions()
-
-
-
Field Detail
-
deleteSource
public boolean deleteSource
Delete the source file when complete.
-
integrity
public boolean integrity
True to enable integrity
-
autoRename
public Function<IFile,java.lang.String> autoRename
Callback when a file with the same name exists
-
onFailed
public BiConsumer<IFile,java.lang.Exception> onFailed
Callback when import fails
-
onProgressChanged
public Consumer<FileCommander.RealFileTaskProgress> onProgressChanged
Callback when progress changes
-
-