Uses of Class
com.google.common.io.RecursiveDeleteOption
-
Packages that use RecursiveDeleteOption Package Description com.google.common.io This package contains utility methods and classes for working with Java I/O; for example input streams, output streams, readers, writers, and files. -
-
Uses of RecursiveDeleteOption in com.google.common.io
Methods in com.google.common.io that return RecursiveDeleteOption Modifier and Type Method Description static RecursiveDeleteOption
RecursiveDeleteOption. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RecursiveDeleteOption[]
RecursiveDeleteOption. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.common.io with parameters of type RecursiveDeleteOption Modifier and Type Method Description static void
MoreFiles. deleteDirectoryContents(java.nio.file.Path path, RecursiveDeleteOption... options)
Deletes all files within the directory at the givenpath
recursively.static void
MoreFiles. deleteRecursively(java.nio.file.Path path, RecursiveDeleteOption... options)
Deletes the file or directory at the givenpath
recursively.
-