1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/source/net/sourceforge/filebot/RenameAction.java
Reinhard Pointner 6631740d98 + support all rename actions (move, copy, hardlink, ...) in GUI as well
+ include/exclude extension mode evolved to Relative Name / Absolute Path modes
2012-07-12 11:23:23 +00:00

13 lines
148 B
Java

package net.sourceforge.filebot;
import java.io.File;
public interface RenameAction {
File rename(File from, File to) throws Exception;
}