Can someone give me a work-around sollution for this exception.
String[] folders;
folders = getPathName(remoteFile).split("/");
for(i = 1; i<folders.length-1; i++){
ftp.makeDirectory(folders[i]);
ftp.changeWorkingDirectory(folders[i]);
}
The exception is given at the line:ftp.makeDirectory(folders[i]);


Sign In
Create Account


Back to top










