mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
14 lines
248 B
Java
14 lines
248 B
Java
package org.briarproject.api.system;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
public interface FileUtils {
|
|
|
|
long getTotalSpace(File f) throws IOException;
|
|
|
|
long getFreeSpace(File f) throws IOException;
|
|
|
|
void deleteFileOrDir(File f);
|
|
}
|