Uses of Class
nl.uva.vlet.vfs.VFile

Packages that use VFile
nl.uva.vlet.vfs   
 

Uses of VFile in nl.uva.vlet.vfs
 

Methods in nl.uva.vlet.vfs that return VFile
 VFile VFSClient.copy(VFile vfile, VDir dest)
          Copy VFile to remote (VDir) destination.
 VFile VFile.copyTo(VDir dest)
          Copy this file to another VFS location.
 VFile VFile.copyTo(VDir dest, java.lang.String newName)
          Copy this file to another VFS location.
 VFile VFile.copyTo(VRL destinationVrl)
          see copyToFile()
 VFile VFile.copyToDir(VRL destinationVrl)
          Copy this file to new destination location.
 VFile VFile.copyToFile(VRL destinationVrl)
          Copy this file to new destination location.
 VFile VDir.createFile(java.lang.String name)
          Create file in this Virtual Directory.
abstract  VFile VDir.createFile(java.lang.String name, boolean force)
          Create file in this Virtual Directory.
 VFile VFSClient.createFile(VRL filepath, boolean force)
          Create file.
protected  VFile VFile.doCopyMoveTo(VFSTransfer transfer, VDir dest, java.lang.String optNewName, boolean isMove)
          Default implementation to do actual copy/move.
 VFile VDir.downloadNode(VNode node, java.lang.String optNewName, boolean isMove)
          Create new VFile and copies contents from (VStreamreadable) vnode.
protected  VFile VFile.downloadTo(VFSTransfer transfer, VDir localDir, java.lang.String optNewName, boolean isMove)
          Default implemenation to download files, sub classes are encouraged to override this method if they have their own (better) methods.
 VFile VDir.getFile(java.lang.String name)
          Get file in this directory
 VFile VFSClient.getFile(java.lang.String locStr)
          Return VFile specified by the location string
 VFile VFSClient.getFile(VRL location)
          Return VFile specified by the location
 VFile VFSClient.move(VFile file, VDir dest)
          Move VFile to remore (VDir) destination.
 VFile VFile.moveTo(VDir dest)
          Moves file from one VFS location to another.
 VFile VFile.moveTo(VDir dest, java.lang.String newName)
          Moves file from one VFS location to another.
 VFile VDir.putFile(VFile file)
          Put File (copy) to this directory is called by VFSClient.copyDir() ...
 VFile VDir.putFile(VFile file, java.lang.String optNewName)
          Put File (copy) to this directory is called by VFSClient.copyDir() ...
protected static VFile VFile.streamCopyMove(VFSTransfer transfer, VFile sourceFile, VDir destDir, java.lang.String optNewName, boolean isMove)
          This is the default way to copy file, by reading from the source file and writing it to a remote file.
protected  VFile VDir.uploadLocalFile(VFSTransfer transfer, VFile localFile, java.lang.String optNewName, boolean isMove)
          Default implementation to upload a local file to this directory.
 

Methods in nl.uva.vlet.vfs with parameters of type VFile
 VFSTransfer VFSClient.asyncCopy(VFile file, VDir dest)
          Copy single VFile in background.
 VFSTransfer VFSClient.asyncMove(VFile file, VDir dest)
          Move single VFile in background.
 VFile VFSClient.copy(VFile vfile, VDir dest)
          Copy VFile to remote (VDir) destination.
 VFile VFSClient.move(VFile file, VDir dest)
          Move VFile to remore (VDir) destination.
 VFile VDir.putFile(VFile file)
          Put File (copy) to this directory is called by VFSClient.copyDir() ...
 VFile VDir.putFile(VFile file, java.lang.String optNewName)
          Put File (copy) to this directory is called by VFSClient.copyDir() ...
protected static VFile VFile.streamCopyMove(VFSTransfer transfer, VFile sourceFile, VDir destDir, java.lang.String optNewName, boolean isMove)
          This is the default way to copy file, by reading from the source file and writing it to a remote file.
protected  VFile VDir.uploadLocalFile(VFSTransfer transfer, VFile localFile, java.lang.String optNewName, boolean isMove)
          Default implementation to upload a local file to this directory.