Package com.mku.fs.drive.utils
Class FileCommander.BatchExportOptions
- java.lang.Object
-
- com.mku.fs.drive.utils.FileCommander.BatchExportOptions
-
- Enclosing class:
- FileCommander
public static class FileCommander.BatchExportOptions extends java.lang.Object
Batch export 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<IVirtualFile,java.lang.Exception>
onFailed
Callback when import failsConsumer<FileCommander.VirtualFileTaskProgress>
onProgressChanged
Callback when progress changes
-
Constructor Summary
Constructors Constructor Description BatchExportOptions()
-
-
-
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<IVirtualFile,java.lang.Exception> onFailed
Callback when import fails
-
onProgressChanged
public Consumer<FileCommander.VirtualFileTaskProgress> onProgressChanged
Callback when progress changes
-
-