Files
cflash/FilePathAdd.java
2026-03-18 23:03:35 +01:00

10 lines
302 B
Java

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