37 lines
1.1 KiB
Java
37 lines
1.1 KiB
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package Suche;
|
|
|
|
import forgemodpackbuilder.GUI;
|
|
import java.io.File;
|
|
|
|
/**
|
|
*
|
|
* @author simonr
|
|
*/
|
|
public class Suche1 {
|
|
|
|
public static String name = "";
|
|
|
|
public static void main(String[] args) {
|
|
|
|
String pathToScan = "./modpack/modpack/mods";
|
|
String fileThatYouWantToFilter;
|
|
File folderToScan = new File(pathToScan); // import -> import java.io.File;
|
|
File[] listOfFiles = folderToScan.listFiles();
|
|
int i = 0;
|
|
for (File listOfFile : listOfFiles) {
|
|
if (listOfFile.isFile()) {
|
|
fileThatYouWantToFilter = listOfFile.getName();
|
|
if (fileThatYouWantToFilter.startsWith(name)
|
|
&& fileThatYouWantToFilter.endsWith(".jar")) {
|
|
System.out.println("found" + " " + fileThatYouWantToFilter);
|
|
GUI.mods1.add("./modpack/modpack/mods/" + fileThatYouWantToFilter);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|