com.jcraft.jsch.ChannelSftp._statVFS()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(191)

本文整理了Java中com.jcraft.jsch.ChannelSftp._statVFS()方法的一些代码示例,展示了ChannelSftp._statVFS()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ChannelSftp._statVFS()方法的具体详情如下:
包路径:com.jcraft.jsch.ChannelSftp
类名称:ChannelSftp
方法名:_statVFS

ChannelSftp._statVFS介绍

暂无

代码示例

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jsch

private SftpStatVFS _statVFS(String path) throws SftpException{
 return _statVFS(Util.str2byte(path, fEncoding));
}

代码示例来源:origin: ePaul/jsch-documentation

private SftpStatVFS _statVFS(String path) throws SftpException{
 return _statVFS(Util.str2byte(path, fEncoding));
}

代码示例来源:origin: org.mule.jsch/jsch

private SftpStatVFS _statVFS(String path) throws SftpException{
 return _statVFS(Util.str2byte(path, fEncoding));
}

代码示例来源:origin: org.xbib/jsch-core

private SftpStatVFS _statVFS(String path) throws SftpException {
  return _statVFS(Util.str2byte(path, fEncoding));
}

代码示例来源:origin: org.xbib/jsch-core

public SftpStatVFS statVFS(String path) throws SftpException {
  try {
    ((MyPipedInputStream) io_in).updateReadSide();
    path = remoteAbsolutePath(path);
    path = isUnique(path);
    return _statVFS(path);
  } catch (Exception e) {
    if (e instanceof SftpException) {
      throw (SftpException) e;
    }
    throw new SftpException(SSH_FX_FAILURE, "", e);
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jsch

public SftpStatVFS statVFS(String path) throws SftpException{
 try{
  ((MyPipedInputStream)io_in).updateReadSide();
  path=remoteAbsolutePath(path);
  path=isUnique(path);
  return _statVFS(path);
 }
 catch(Exception e){
  if(e instanceof SftpException) throw (SftpException)e;
  if(e instanceof Throwable)
   throw new SftpException(SSH_FX_FAILURE, "", (Throwable)e);
  throw new SftpException(SSH_FX_FAILURE, "");
 }
 //return null;
}

代码示例来源:origin: org.mule.jsch/jsch

public SftpStatVFS statVFS(String path) throws SftpException{
 try{
  ((MyPipedInputStream)io_in).updateReadSide();
  path=remoteAbsolutePath(path);
  path=isUnique(path);
  return _statVFS(path);
 }
 catch(Exception e){
  if(e instanceof SftpException) throw (SftpException)e;
  if(e instanceof Throwable)
   throw new SftpException(SSH_FX_FAILURE, "", (Throwable)e);
  throw new SftpException(SSH_FX_FAILURE, "");
 }
 //return null;
}

代码示例来源:origin: ePaul/jsch-documentation

public SftpStatVFS statVFS(String path) throws SftpException{
 try{
  ((MyPipedInputStream)io_in).updateReadSide();
  path=remoteAbsolutePath(path);
  path=isUnique(path);
  return _statVFS(path);
 }
 catch(Exception e){
  if(e instanceof SftpException) throw (SftpException)e;
  if(e instanceof Throwable)
   throw new SftpException(SSH_FX_FAILURE, "", (Throwable)e);
  throw new SftpException(SSH_FX_FAILURE, "");
 }
 //return null;
}

相关文章

微信公众号

最新文章

更多

ChannelSftp类方法