mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-14 21:35:03 -05:00
15 lines
182 B
Java
15 lines
182 B
Java
|
|
package net.filebot;
|
|
|
|
import java.io.File;
|
|
|
|
public interface RenameAction {
|
|
|
|
File rename(File from, File to) throws Exception;
|
|
|
|
default boolean canRevert() {
|
|
return true;
|
|
}
|
|
|
|
}
|