mirror of
https://github.com/Cametendo/cflash.git
synced 2026-03-18 04:50:19 +01:00
10 lines
292 B
Java
10 lines
292 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 Path = UserInput.nextLine();
|
|
System.out.println("Using File: " + Path);
|
|
}
|
|
}
|