mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-26 09:48:56 -05:00
6631740d98
+ include/exclude extension mode evolved to Relative Name / Absolute Path modes
13 lines
148 B
Java
13 lines
148 B
Java
|
|
package net.sourceforge.filebot;
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
public interface RenameAction {
|
|
|
|
File rename(File from, File to) throws Exception;
|
|
|
|
}
|