-
Notifications
You must be signed in to change notification settings - Fork 0
client API methods create directory
hannsolo edited this page May 6, 2020
·
2 revisions
createDirectory(path: string, copyOptions?: ICopyOptions): Promise<boolean>
Create a new directory.
client.login("user", "password")
.then( () => {
client.createDirectory("images/newDir")
.then( (success) => {
console.log("dir created with result " + success);
})
.catch(console.error)
.finally( () => {
client.logout();
})
})
.catch(console.error);
Documentation
-
Interfaces