Uses of Class
org.apache.camel.component.file.GenericFileOperationFailedException

Packages that use GenericFileOperationFailedException
org.apache.camel.component.file The File Component for working with file systems. 
 

Uses of GenericFileOperationFailedException in org.apache.camel.component.file
 

Methods in org.apache.camel.component.file that throw GenericFileOperationFailedException
 boolean GenericFileOperations.buildDirectory(String directory, boolean absolute)
          Builds the directory structure.
 boolean FileOperations.buildDirectory(String directory, boolean absolute)
           
 void GenericFileOperations.changeCurrentDirectory(String path)
          Change the current remote directory
 void FileOperations.changeCurrentDirectory(String path)
           
 void GenericFileOperations.changeToParentDirectory()
          Change the current remote directory to the parent
 void FileOperations.changeToParentDirectory()
           
 boolean GenericFileOperations.deleteFile(String name)
          Deletes the file name by name, relative to the current directory
 boolean FileOperations.deleteFile(String name)
           
 boolean GenericFileOperations.existsFile(String name)
          Determines whether the files exists or not
 boolean FileOperations.existsFile(String name)
           
 String GenericFileOperations.getCurrentDirectory()
          Gets the current remote directory
 String FileOperations.getCurrentDirectory()
           
 List<T> GenericFileOperations.listFiles()
          List the files in the current directory
 List<File> FileOperations.listFiles()
           
 List<T> GenericFileOperations.listFiles(String path)
          List the files in the given remote directory
 List<File> FileOperations.listFiles(String path)
           
 void GenericFileOperations.releaseRetreivedFileResources(Exchange exchange)
          Releases the resources consumed by a retrieved file
 void FileOperations.releaseRetreivedFileResources(Exchange exchange)
           
 boolean GenericFileOperations.renameFile(String from, String to)
          Renames the file
 boolean FileOperations.renameFile(String from, String to)
           
 boolean GenericFileOperations.retrieveFile(String name, Exchange exchange)
          Retrieves the file
 boolean FileOperations.retrieveFile(String name, Exchange exchange)
           
 boolean GenericFileOperations.storeFile(String name, Exchange exchange)
          Stores the content as a new remote file (upload)
 boolean FileOperations.storeFile(String fileName, Exchange exchange)
           
 void GenericFileProducer.writeFile(Exchange exchange, String fileName)
           
 



Apache Camel