1
0
This commit is contained in:
2023-02-21 18:31:01 +01:00
parent 455cb63652
commit b6e6a94a1e
20 changed files with 495 additions and 21 deletions

View File

@@ -65,7 +65,7 @@ public interface FilesService {
}
}
void createAppDirectory(App app);
void createAppDirectoryIfNotExists(App app);
void createDirectory(App app, Path path);
@@ -81,7 +81,7 @@ public interface FilesService {
* Paths in return list are always relative to the appDir. Non-recursive list.
*
* @param app to list the files for
* @param path in case of {@link Optional#EMPTY} the appDir is used as start dir. If not empty, path has to be relative
* @param path in case of an empty optional the appDir is used as start dir. If not empty, path has to be relative
* to the appDir
*/
List<ContentContainer> list(App app, Optional<Path> path);