Skip to content
Snippets Groups Projects
Commit a675a7db authored by Branden's avatar Branden
Browse files

Added documentation and tested LaunchApplication Class

parent fd874a4b
No related branches found
No related tags found
2 merge requests!65Prototype,!48Feature detect program/launch application
......@@ -5,6 +5,10 @@ import java.io.IOException;
public class LaunchApplication {
/**
* starts a program at the FilePath location if it isn't already running
* @param FilePath the absolute file path to the .exe of the program.
*/
public static void runApplication(String FilePath){
File application = new File(FilePath);
String Name = application.getName();
......
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