赞
踩
使用FileSystem中的delete()方法可以永久性的删除文件或目录。
public boolean delete(Path f,boolean recursive) throws IOException
如果 f 是一个空目录,那么recursive的值就会被忽略,只有在recursive为true时,非空目录及其内容才会被删除,否则会抛出IOException异常。