patch fin projet v1

This commit is contained in:
jleroy
2024-05-02 11:57:42 +02:00
parent 8788aecb39
commit 53d7fe5a80
21 changed files with 2226 additions and 40 deletions

View File

@@ -0,0 +1,12 @@
package fr.eni.enchere.bll;
import java.nio.file.Files;
import java.nio.file.Paths;
public class FileService {
public boolean fileExists(String filePath) {
return Files.exists(Paths.get(filePath));
}
}