Interface IFileClient
-
- All Known Implementing Classes:
AppServiceKuduClient,AzureFunctionsAdminClient
public interface IFileClient
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateDirectory(String path)voiddeleteFile(String path)AppServiceFilegetFileByPath(String path)reactor.core.publisher.Flux<ByteBuffer>getFileContent(String path)List<? extends AppServiceFile>getFilesInDirectory(String dir)voiduploadFileToPath(String content, String path)
-
-
-
Method Detail
-
getFileContent
reactor.core.publisher.Flux<ByteBuffer> getFileContent(String path)
-
getFilesInDirectory
List<? extends AppServiceFile> getFilesInDirectory(String dir)
-
getFileByPath
AppServiceFile getFileByPath(String path)
-
createDirectory
void createDirectory(String path)
-
deleteFile
void deleteFile(String path)
-
-