create devicecheck, filepathcheck and blocksize

This commit is contained in:
Cametendo
2026-02-09 11:58:37 +01:00
parent baab63f846
commit 4d6e8b975f
6 changed files with 83 additions and 4 deletions

9
FilePathAdd.java Normal file
View File

@@ -0,0 +1,9 @@
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);
}
}