diff options
| author | tkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7> | 2013-04-10 19:35:58 +0000 | 
|---|---|---|
| committer | tkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7> | 2013-04-10 19:35:58 +0000 | 
| commit | 13232a3a3b9c736ca50016e1cb0bae1e357813fc (patch) | |
| tree | 85d94df273cf3fafb3bd2057ed636cdca86dafdf /pdf-over-gui/src/main/java | |
| parent | b6ad34e44b3aedce7134a6bc79cb5b16e1f21617 (diff) | |
| download | pdf-over-13232a3a3b9c736ca50016e1cb0bae1e357813fc.tar.gz pdf-over-13232a3a3b9c736ca50016e1cb0bae1e357813fc.tar.bz2 pdf-over-13232a3a3b9c736ca50016e1cb0bae1e357813fc.zip | |
Change -o argument to allow setting output filename
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@404 174cde9d-5d70-4d2a-aa98-46368bc2aaf7
Diffstat (limited to 'pdf-over-gui/src/main/java')
| -rw-r--r-- | pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/OutputFolderArgument.java | 27 | 
1 files changed, 10 insertions, 17 deletions
| diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/OutputFolderArgument.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/OutputFolderArgument.java index 9e06be17..037a4226 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/OutputFolderArgument.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/OutputFolderArgument.java @@ -16,10 +16,6 @@  package at.asit.pdfover.gui.cliarguments;  // Imports -import java.io.File; -import java.io.FileNotFoundException; -import java.io.IOException; -  import org.slf4j.Logger;  import org.slf4j.LoggerFactory; @@ -52,21 +48,18 @@ public class OutputFolderArgument extends CLIArgument {  			throws InitializationException {  		try {  			if (args.length > argOffset + 1) { -  				String outputFolder = args[argOffset + 1]; -				 -				File outputFolderDir = new File(outputFolder); -				 -				if(!outputFolderDir.exists()) { -					throw new FileNotFoundException(outputFolder); -				} -				 -				if(!outputFolderDir.isDirectory()) { -					throw new IOException(outputFolderDir + Messages.getString("argument.error.output")); //$NON-NLS-1$ -				} -				 + +//				File outputFolderDir = new File(outputFolder); +//				if(!outputFolderDir.exists()) { +//					throw new FileNotFoundException(outputFolder); +//				} +//				if(!outputFolderDir.isDirectory()) { +//					throw new IOException(outputFolderDir + Messages.getString("argument.error.output")); //$NON-NLS-1$ +//				} +  				getConfiguration().setDefaultOutputFolderOverlay(outputFolder); -				 +  				return argOffset + 1;  			}  		} catch (Exception ex) { | 
