Made flasher show user configuration

This commit is contained in:
Cametendo
2026-04-03 15:12:45 +02:00
parent 2c076c4c95
commit c086bcc2e6
6 changed files with 44 additions and 16 deletions

View File

@@ -1,9 +1,13 @@
import java.util.Scanner;
public class FilePathAdd {
public static void filePath(Scanner UserInput) {
public static String ImagePath = "";
protected static String filePath(Scanner UserInput) {
System.out.println("Please enter the FULL Path of your ISO / Image. ()");
String ImagePath = UserInput.nextLine();
ImagePath = UserInput.nextLine();
System.out.println("Using File: " + ImagePath);
return ImagePath;
}
}