Uses of Class
com.gubutech.xload.XloadDirectory

Packages that use XloadDirectory
com.gubutech.xload Provides classes and interfaces for uploading of files and management of files and directories on an application server. 
 

Uses of XloadDirectory in com.gubutech.xload
 

Methods in com.gubutech.xload that return XloadDirectory
 XloadDirectory XloadDirectory.createDirectory(java.lang.String direct)
          Creates a directory within the directory represented by this object.
 XloadDirectory XloadDirectory.getDirectory(java.lang.String dirName)
          Returns a directory represented as an XloadDirectory object if one exists in the directory represented by this object.
abstract  XloadDirectory XloadFile.getDirectory()
          Retrieves an XloadDirectory object that represents this objects parent directory.
 XloadDirectory XloadManager.getDirectory(java.lang.String dir)
          Returns an XloadDirectory representing a directory on the file system given a path dir.
 XloadDirectory XloadManager.createDirectory(java.lang.String dir, java.lang.String newDir)
          Creates a directory in the appropriate directory and returns an XloadDirectory instance.
 

Methods in com.gubutech.xload with parameters of type XloadDirectory
abstract  XloadFile XloadFile.copyTo(XloadDirectory dir)
          Copies this file to another directory.
abstract  XloadFile XloadFile.moveTo(XloadDirectory dir)
          Moves this file to a directory.
 boolean XloadFileUpload.hasMore(XloadDirectory dir)
          Indicates whether or not there are anymore existing file deployments related to this file upload.
 XloadFile XloadFileUpload.getFile(XloadDirectory dir)
          Gets access to the first file deployment for this file upload that exists in the given directory from the FIFO (First In First Out) list described in the introduction for this class.
 XloadFile XloadManager.getFile(java.lang.String paramName, XloadDirectory dir)
          Gets access to the first file deployment from the list, in designated directory dir for a file upload designated on the client side by paramName.