Deleting File/Path : File Operation « JDK 7 « Java
- Java
- JDK 7
- File Operation
Deleting File/Path
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Test {
public static void main(String[] args) throws Exception {
Path sourceFile = Paths.get("C:/home/docs/users.txt");
Files.delete(sourceFile);
}
}
Related examples in the same category