使用 JSch,有没有办法在不执行 ls 的情况下判断远程文件是否存在?

问题描述 投票:0回答:7

使用 JSch,有没有一种方法可以判断远程文件是否存在,而无需执行

ls
并循环遍历文件以查找名称匹配?

谢谢

java jsch
7个回答
20
投票

你也可以这样做:

try {
    channelSftp.lstat(name);
} catch (SftpException e){
    if(e.id == ChannelSftp.SSH_FX_NO_SUCH_FILE){
    // file doesn't exist
    } else {
    // something else went wrong
        throw e;
    }
}

如果你对不存在的东西执行 lstat,你会得到一个 id 为 2 的 SftpExecption,否则你会得到有关该文件的信息。


18
投票

这就是我检查 JSch 中目录是否存在的方法。

注意:与此问题无关,但有些人可能会发现它有用。

如果 dir 不存在则创建目录

ChannelSftp channelSftp = (ChannelSftp)channel;
String currentDirectory=channelSftp.pwd();
String dir="abc";
SftpATTRS attrs=null;
try {
    attrs = channelSftp.stat(currentDirectory+"/"+dir);
} catch (Exception e) {
    System.out.println(currentDirectory+"/"+dir+" not found");
}

if (attrs != null) {
    System.out.println("Directory exists IsDir="+attrs.isDir());
} else {
    System.out.println("Creating dir "+dir);
    channelSftp.mkdir(dir);
}

7
投票

实际上在我的项目中

ls
没有循环工作。我只是将文件名传递到
ls
调用路径。

private static boolean exists(ChannelSftp channelSftp, String path) {
    Vector res = null;
    try {
        res = channelSftp.ls(path);
    } catch (SftpException e) {
        if (e.id == SSH_FX_NO_SUCH_FILE) {
            return false;
        }
        log.error("Unexpected exception during ls files on sftp: [{}:{}]", e.id, e.getMessage());
    }
    return res != null && !res.isEmpty();
}

例如,有一个文件

file.txt
,其网址为
sftp://[email protected]/path/to/some/random/folder/file.txt
。我将函数
exists
path
传递为
/path/to/some/random/folder/file.txt


3
投票

(如果您使用的是库的 SFTP 部分,这是我没有考虑的假设。)

我认为它的

ls(String path)
会接受文件名;我暂时无法检查。

如果没有,则无需手动迭代;您可以使用选择器变体:

ls(String path, ChannelSftp.LsEntrySelector selector)

1
投票
import java.util.ArrayList;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;

public class FileExists {

ChannelExec channelExec = null;
static Channel channel = null;

static String host = "hostname";
static String user = "username";
static String password = "password$";

public static void main(String[] args) {
    String filename = "abc.txt";
    String filepath = "/home/toolinst/ggourav";
    try {
        Channel channel = getChannelSftp(host, user, password);
        channel.connect();
        ChannelSftp channelSftp = (ChannelSftp) channel;
        channelSftp.cd(filepath);
        String path = channelSftp.ls(filename).toString();
        if (!path.contains(filename)) {
            System.out.println("File doesn't exist.");
        } else
            System.out.println("File already exist.");

    } catch (Exception e) {
        e.printStackTrace();
    }

}

private static Channel getChannelSftp(String host, String user, String password) {
    try {
        JSch jsch = new JSch();
        Session session = jsch.getSession(user, host, 22);
        java.util.Properties config = new java.util.Properties();
        config.put("StrictHostKeyChecking", "no");
        config.put("PreferredAuthentications", "publickey,keyboard-interactive,password");
        session.setConfig(config);
        session.setPassword(password);
        session.connect();
        channel = session.openChannel("sftp");

    } catch (Exception e) {
        System.out.println("Failed to get sftp channel. " + e);
    }
    return channel;
}

}


0
投票

您可以通过

查看
 if [ -e FILE_NAME ] ; then
    //do something
 fi

  if [ -d DIRNAME ]

目录

    if [ -l SYMLINK ]

用于软链接

我希望这有帮助


这是在远程计算机上运行命令的示例http://www.jcraft.com/jsch/examples/Exec.java.html

您可以很好地运行

ls
或传递整个脚本。这与将脚本复制到远程机器然后执行它是一样的。


0
投票

Gourav - 在你的回答中应该是

String path = sftpChannel.ls(filePath).toString();//不是文件名

© www.soinside.com 2019 - 2024. All rights reserved.