Package br.com.objectos.rio.core.os

Examples of br.com.objectos.rio.core.os.Tar


  @Override
  protected void execute0(KdoEclipseMirrorOptions options) {
    Directory targetDir = dirs.eclipseVar();
    File file = options.getTargetFile(targetDir);

    Tar tar = Tar.changeTo(targetDir)
        .add("eclipse")
        .bzip2()
        .toFile(file);

    if (!tar.success()) {
      List<Exception> exceptions = tar.getExceptions();
      for (Exception exception : exceptions) {
        exception.printStackTrace();
      }
    }
  }
View Full Code Here

TOP

Related Classes of br.com.objectos.rio.core.os.Tar

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.