Files
cflash/FilePathAdd.java
2026-04-03 15:12:45 +02:00

14 lines
369 B
Java

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