Skip to content
Snippets Groups Projects
Commit afb0c500 authored by Olivier Langella's avatar Olivier Langella
Browse files

check that command file exists and is executable

parent beb9f82a
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,15 @@ public class base_shell {
public void start_process() throws Exception {
if (application.equals(""))
throw new MSMSException("No application specified");
File appFile = new File(application);
if (!appFile.exists()) {
throw new MSMSException("no command file named : \n"
+ appFile.getAbsolutePath());
}
if (!appFile.canExecute()) {
throw new MSMSException("unable to execute command : \n"
+ appFile.getAbsolutePath());
}
build = new ProcessBuilder(commande);
build.redirectErrorStream(true);
process_run = build.start();
......@@ -92,7 +101,7 @@ public class base_shell {
while (line != -1) {
// processing(line);
stdout.append((char) line);
//System.out.print((char)line);
// System.out.print((char)line);
line = reader.read();
}
} finally {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment