fix(core): update
This commit is contained in:
parent
4bb6e2ef51
commit
346269d399
13199
package-lock.json
generated
13199
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -169,14 +169,15 @@ export class Directory {
|
|||||||
*/
|
*/
|
||||||
public async move() {
|
public async move() {
|
||||||
// TODO
|
// TODO
|
||||||
|
throw new Error('moving a directory is not yet implemented')
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* creates a file within this directory
|
* creates a file within this directory
|
||||||
* @param relativePathArg
|
* @param relativePathArg
|
||||||
*/
|
*/
|
||||||
public async createFile(relativePathArg) {
|
public async createEmptyFile(relativePathArg: string) {
|
||||||
let completeFilePath: string = '';
|
const emtpyFile = await File.createFileFromString(this, relativePathArg, '');
|
||||||
}
|
}
|
||||||
|
|
||||||
// file operations
|
// file operations
|
||||||
|
@ -76,8 +76,8 @@ export class File {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async streamContent() {
|
public async streamContent() {
|
||||||
throw new Error('not yet implemented');
|
|
||||||
// TODO
|
// TODO
|
||||||
|
throw new Error('not yet implemented');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user