mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-15 13:55:03 -05:00
18 lines
211 B
Java
18 lines
211 B
Java
package net.filebot.vfs;
|
|
|
|
import java.io.File;
|
|
|
|
public interface FileInfo {
|
|
|
|
public String getPath();
|
|
|
|
public String getName();
|
|
|
|
public String getType();
|
|
|
|
public long getLength();
|
|
|
|
public File toFile();
|
|
|
|
}
|