我要做的是用Java将目录从本地服务器上传到远程服务器。
为此,我使用了com.jcraft.jsch库。
我可以连接到远程服务器并将目录从本地计算机上传到远程服务器,而不会出现问题。
我已创建此方法来做到这一点:
private void recursiveFolderUpload(String sourcePath, String destinationPath, ChannelSftp channelSftp)
throws SftpException, FileNotFoundException {
File sourceFile = new File(sourcePath);
if (sourceFile.isFile()) {
// copy if it is a file
channelSftp.cd(destinationPath);
if (!sourceFile.getName().startsWith("."))
channelSftp.put(new FileInputStream(sourceFile), sourceFile.getName(), ChannelSftp.OVERWRITE);
} else {
System.out.println("inside else " + sourceFile.getName());
File[] files = sourceFile.listFiles();
if (files != null && !sourceFile.getName().startsWith(".")) {
channelSftp.cd(destinationPath);
SftpATTRS attrs = null;
// check if the directory is already existing
try {
attrs = channelSftp.stat(destinationPath + "/" + sourceFile.getName());
} catch (Exception e) {
System.out.println(destinationPath + "/" + sourceFile.getName() + " not found");
}
// else create a directory
if (attrs != null) {
System.out.println("Directory exists IsDir=" + attrs.isDir());
} else {
System.out.println("Creating dir " + sourceFile.getName());
channelSftp.mkdir(sourceFile.getName());
}
for (File f : files) {
recursiveFolderUpload(f.getAbsolutePath(), destinationPath + "/" + sourceFile.getName(),
channelSftp);
}
}
}
这没问题,目录已转移,但有时我的目录中有快捷方式。
想象一下我有一个文件夹。在其中,我还有另外两个文件夹,其中一个是另一个的快捷方式。
执行该方法时,作为快捷方式的目录现在是其自己的文件,我不希望这样做。
在将目录上传到远程服务器时如何维护快捷方式?
谢谢
答案 0 :(得分:0)