使用 JSch,有没有一种方法可以判断远程文件是否存在,而无需执行ls
并遍历文件以查找名称匹配?
谢谢
你也可以这样做:
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,否则你会得到关于文件的信息。
这就是我在JSch中检查目录存在的方式。
注意:与这个问题无关,但有些人可能会觉得它很有用。
如果目录不存在则创建目录
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);
}
实际上在我的项目中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
带有 url的文件sftp://user@www.server.comm/path/to/some/random/folder/file.txt
。我传递给exists
path
作为/path/to/some/random/folder/file.txt
(如果您使用的是库的 SFTP 部分,这是我没有考虑的假设。)
我认为它ls(String path)
会接受文件名;我暂时无法检查。
如果没有,则不需要手动迭代;您可以使用选择器变体:
ls(String path, ChannelSftp.LsEntrySelector selector)
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;
}
}
你可以检查
if [ -e FILE_NAME ] ; then
//do something
fi
或者
if [ -d DIRNAME ]
对于目录
或者
if [ -l SYMLINK ]
对于软链接
我希望这有帮助
这是在远程机器上运行命令的示例http://www.jcraft.com/jsch/examples/Exec.java.html
您可以很好地运行ls
或传递整个脚本。这与将脚本复制到远程计算机然后执行它相同。