Package com.trilead.ssh2

Examples of com.trilead.ssh2.SFTPv3Client


    /**
     * Makes sure that the directory exists, by creating it if necessary.
     */
    public void mkdirs(String path, int posixPermission) throws IOException {
        SFTPv3FileAttributes atts = _stat(path);
        if (atts!=null && atts.isDirectory())
            return;

        int idx = path.lastIndexOf("/");
        if (idx>0)
            mkdirs(path.substring(0,idx), posixPermission);
View Full Code Here


            }
        };
    }

    public void chmod(String path, int permissions) throws IOException {
        SFTPv3FileAttributes atts = new SFTPv3FileAttributes();
        atts.permissions = permissions;
        setstat(path, atts);
    }
View Full Code Here

          pfleCommandFile = fleResultFile;
        }
      }

      // set execute permissions for owner
      SFTPv3FileHandle fileHandle = this.getFileHandle(strFileName, new Integer(0700));

      FileInputStream fis = null;
      long offset = 0;
      try {
        fis = new FileInputStream(pfleCommandFile);
View Full Code Here

    @SuppressWarnings("unused")
    final String conMethodName = conClassName + "::setFilePermissions";

    SFTPv3FileAttributes attr = new SFTPv3FileAttributes();
    attr.permissions = pintPermissions;
    SFTPv3FileHandle fileHandle = this.FtpClient().createFileTruncate(pstrFileName, attr);
    return fileHandle;
  } // private void setFilePermissions
View Full Code Here

    @SuppressWarnings("unused")
    final String conMethodName = conClassName + "::setFilePermissions";

    SFTPv3FileAttributes attr = new SFTPv3FileAttributes();
    attr.permissions = pintPermissions;
    @SuppressWarnings("unused")
    SFTPv3FileHandle fileHandle = this.FtpClient().createFileTruncate(pstrFileName, attr);
  } // private void setFilePermissions
View Full Code Here

          commandFile = resultFile;
        }
      }

      // set execute permissions for owner
      SFTPv3FileHandle fileHandle = sftpClient.createFileTruncate(commandFile.getName(), attr);

      FileInputStream fis = null;
      long offset = 0;
      try {
        fis = new FileInputStream(commandFile);
View Full Code Here

 
  public long putFile(String localFile, String remoteFile) throws Exception {
    try{
      remoteFile = resolvePathname(remoteFile);     
      SFTPv3FileHandle fileHandle = sftpClient.createFileTruncate(remoteFile);
      File localF = new File(localFile);
      FileInputStream fis = null;
      long offset = 0;
            try {
                fis = new FileInputStream(localF);
View Full Code Here

   * @see #get( String, String )
   * @exception Exception
   */
  public long getFile(String remoteFile, String localFile, boolean append) throws Exception {
    String sourceLocation = resolvePathname(remoteFile);
    SFTPv3FileHandle sftpFileHandle = null;
        FileOutputStream fos            = null;
        File transferFile               = null;
        long remoteFileSize             = -1;
       
        try {
View Full Code Here

  // }
  // } // get

  public long getFile(String remoteFile, String localFile, boolean append) throws Exception {
    String sourceLocation = resolvePathname(remoteFile);
    SFTPv3FileHandle sftpFileHandle = null;
    FileOutputStream fos = null;
    File transferFile = null;
    long remoteFileSize = -1;

    try {
View Full Code Here

      }
    }
  }

  public long readFile(String pstrFilename) throws Exception {
    SFTPv3FileHandle sftpFileHandle = null;

    try {
      String sourceLocation = resolvePathname(pstrFilename);
      long remoteFileSize = size(sourceLocation);
      sftpFileHandle = openFileRO(pstrFilename);
View Full Code Here

TOP

Related Classes of com.trilead.ssh2.SFTPv3Client

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.