INT-2387 changed mkdir() method in Session to return boolean
This commit is contained in:
@@ -119,8 +119,8 @@ class FtpSession implements Session<FTPFile> {
|
||||
}
|
||||
}
|
||||
|
||||
public void mkdir(String remoteDirectory) throws IOException {
|
||||
this.client.makeDirectory(remoteDirectory);
|
||||
public boolean mkdir(String remoteDirectory) throws IOException {
|
||||
return this.client.makeDirectory(remoteDirectory);
|
||||
}
|
||||
|
||||
public boolean exists(String path) throws IOException{
|
||||
|
||||
Reference in New Issue
Block a user