I'm creating a Java program in which I upload a file to a server on a particular path. I am using jSch
for sftp
.
So, before uploading the file, I want to check if the given directory exists on server or not.
if(path exists)
//upload file to the location
else
//create the directory and then upload the file.
How do I check the path exists or not?
Note: I am executing the code on a client that will check for the existence of a remote directory on a server. So please don't suggest File.exists()
.