the following code is for uploading files and folders to a server(SFTP). i m trying to keep the folder structure intact i.e. C:\temp\test\file.txt becomes /home/www/javauploads/temp/test/file.txt on the server. but when i run it the files all upload but the folders and files are just dumped on the server without any structure at all and the file names appear like this (C3NXXV~9) is there a way to upload the files and folders while keeping the structure and file names intact, thanks. `
private static void processDir(File dir) throws JSchException, SftpException {
String SFTPHOST = "*****.com";
int SFTPPORT = ***;
String SFTPUSER = "****";
String SFTPPASS = "*****";
String SFTPWORKINGDIR = "/home/www/javauploads/";`Session session = null;
Channel channel = null;
ChannelSftp channelSftp = null;
JSch jsch = new JSch();
session = jsch.getSession(SFTPUSER,SFTPHOST,SFTPPORT);
session.setPassword(SFTPPASS);
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.connect();
channel = session.openChannel("sftp");
channel.connect();
channelSftp = (ChannelSftp)channel;
channelSftp.cd(SFTPWORKINGDIR);
if (dir.isDirectory()){
channelSftp.mkdir(dir.toString());
System.out.println("[Directory] : " + dir);
}else{
channelSftp.put(dir.toString());
System.out.println("[File] : " + dir);
}
channelSftp.exit();
session.disconnect();
}
private static void traverse(File dir) throws JSchException, SftpException {
processDir(dir);
if (dir.isDirectory()) {
String[] children = dir.list();
for (int i = 0; i < children.length; i++) {
traverse(new File(dir, children[i]));
}
}
}`