fix(all): Convert is OK.
This commit is contained in:
parent
0249f9f279
commit
da582b0a59
1 changed files with 10 additions and 1 deletions
|
@ -530,9 +530,18 @@ export class SystemKeywords {
|
||||||
// Checks if the destination contains subfolders that
|
// Checks if the destination contains subfolders that
|
||||||
// need to be created.
|
// need to be created.
|
||||||
|
|
||||||
|
// Checks if the destination contains subfolders that
|
||||||
|
// need to be created.
|
||||||
|
|
||||||
|
let folder;
|
||||||
if (dest.indexOf('/') !== -1) {
|
if (dest.indexOf('/') !== -1) {
|
||||||
const pathOnly = path.dirname(dest);
|
const pathOnly = path.dirname(dest);
|
||||||
await this.createFolder(pathOnly);
|
folder = await this.createFolder(pathOnly);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
folder = await client.api(
|
||||||
|
`${baseUrl}/drive/root:/${root}`)
|
||||||
|
.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Performs the conversion operation getting a reference
|
// Performs the conversion operation getting a reference
|
||||||
|
|
Loading…
Add table
Reference in a new issue