Interface ConfigFileSystem
-
- All Known Implementing Classes:
ConfigFileSystemImpl
public interface ConfigFileSystem
Interface to configs file system used byConfigFilesUpdater
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
checkContentEqual(File f1, File f2)
void
copy(File from, File to)
File
createBackupDir()
File
createTempProjectsDir()
void
delete(File f)
List<String>
listFilesRecursively(File dir)
-
-
-
Method Detail
-
createTempProjectsDir
@NotNull File createTempProjectsDir() throws IOException
- Throws:
IOException
-
createBackupDir
@NotNull File createBackupDir() throws IOException
- Throws:
IOException
-
delete
void delete(@NotNull File f)
-
copy
void copy(@NotNull File from, @NotNull File to) throws IOException
- Throws:
IOException
-
-