Browse Source

Add javadoc

async
Decebal Suiu 6 years ago
parent
commit
6b92361aad
  1. 6
      pf4j/src/main/java/org/pf4j/util/Unzip.java

6
pf4j/src/main/java/org/pf4j/util/Unzip.java

@ -63,10 +63,14 @@ public class Unzip {
this.destination = destination; this.destination = destination;
} }
/**
* Extract the content of zip file ({@code source}) to destination directory.
* If destination directory already exists it will be deleted before.
*/
public void extract() throws IOException { public void extract() throws IOException {
log.debug("Extract content of '{}' to '{}'", source, destination); log.debug("Extract content of '{}' to '{}'", source, destination);
// delete destination file if exists // delete destination directory if exists
if (destination.exists() && destination.isDirectory()) { if (destination.exists() && destination.isDirectory()) {
FileUtils.delete(destination.toPath()); FileUtils.delete(destination.toPath());
} }

Loading…
Cancel
Save