Uses of Class
com.aquima.interactions.foundation.connectivity.impl.exception.FileException
Packages that use FileException
Package
Description
-
Uses of FileException in com.aquima.interactions.foundation.connectivity
Methods in com.aquima.interactions.foundation.connectivity that throw FileExceptionModifier and TypeMethodDescriptionvoid
IFileSystemConnection.createFile
(String path, InputStream stream) This method creates a file and writes it to the file system.void
IFileSystemConnection.createFolder
(String path) This method creates a new folder relative to the base path.void
IFileSystemConnection.createOrUpdateFile
(String path, InputStream stream) This method updates an existing file or otherwise creates it, if it doesn't exist.void
IFileSystemConnection.deleteFile
(String path) This method deleted a file relative to the base path.void
IFileSystemConnection.deleteFolder
(String path) This method deletes a folder relative to the base path.long
IFileSystemConnection.getFileSize
(String path) This method returns the size of a file in bytes.byte[]
Returns the entire content of the file into a byte array.int
Reads up tolength
bytes of data from a file in this connection into an array of bytes.void
IFileSystemConnection.updateFile
(String path, InputStream stream) This method updates a file, that is relative to the base path. -
Uses of FileException in com.aquima.interactions.foundation.connectivity.impl
Methods in com.aquima.interactions.foundation.connectivity.impl that throw FileExceptionModifier and TypeMethodDescriptionvoid
FileSystemConnection.createFile
(String path, InputStream stream) void
FileSystemConnection.createFolder
(String path) void
FileSystemConnection.createOrUpdateFile
(String path, InputStream stream) void
FileSystemConnection.deleteFile
(String path) void
FileSystemConnection.deleteFolder
(String path) long
FileSystemConnection.getFileSize
(String path) byte[]
int
void
FileSystemConnection.updateFile
(String path, InputStream stream)