Class ConfigFileSystemImpl
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.projects.ConfigFileSystemImpl
-
- All Implemented Interfaces:
ConfigFileSystem
public class ConfigFileSystemImpl extends Object implements ConfigFileSystem
-
-
Constructor Summary
Constructors Constructor Description ConfigFileSystemImpl()
-
Method Summary
All Methods Instance Methods Concrete 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 public File createTempProjectsDir() throws IOException
- Specified by:
createTempProjectsDir
in interfaceConfigFileSystem
- Throws:
IOException
-
createBackupDir
@NotNull public File createBackupDir() throws IOException
- Specified by:
createBackupDir
in interfaceConfigFileSystem
- Throws:
IOException
-
delete
public void delete(@NotNull File f)
- Specified by:
delete
in interfaceConfigFileSystem
-
copy
public void copy(@NotNull File from, @NotNull File to) throws IOException
- Specified by:
copy
in interfaceConfigFileSystem
- Throws:
IOException
-
checkContentEqual
public boolean checkContentEqual(@NotNull File f1, @NotNull File f2)
- Specified by:
checkContentEqual
in interfaceConfigFileSystem
-
listFilesRecursively
@NotNull public List<String> listFilesRecursively(@NotNull File dir)
- Specified by:
listFilesRecursively
in interfaceConfigFileSystem
-
-