Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
547692ac62 | |||
5410df0011 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartbucket",
|
"name": "@pushrocks/smartbucket",
|
||||||
"version": "1.0.18",
|
"version": "1.0.19",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartbucket",
|
"name": "@pushrocks/smartbucket",
|
||||||
"version": "1.0.18",
|
"version": "1.0.19",
|
||||||
"description": "simple cloud independent object storage",
|
"description": "simple cloud independent object storage",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
|
@ -124,6 +124,7 @@ export class Directory {
|
|||||||
* gets a sub directory
|
* gets a sub directory
|
||||||
*/
|
*/
|
||||||
public async getSubDirectoryByName(dirNameArg: string): Promise<Directory> {
|
public async getSubDirectoryByName(dirNameArg: string): Promise<Directory> {
|
||||||
|
// TODO: make this recursive
|
||||||
const directories = await this.listDirectories();
|
const directories = await this.listDirectories();
|
||||||
return directories.find(directory => {
|
return directories.find(directory => {
|
||||||
return directory.name === dirNameArg;
|
return directory.name === dirNameArg;
|
||||||
@ -144,4 +145,20 @@ export class Directory {
|
|||||||
public async createFile(relativePathArg) {
|
public async createFile(relativePathArg) {
|
||||||
let completeFilePath: string = '';
|
let completeFilePath: string = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// file operations
|
||||||
|
public async fastStore(pathArg: string, contentArg: string) {
|
||||||
|
const path = plugins.path.join(this.getBasePath(), pathArg);
|
||||||
|
await this.bucketRef.fastStore(path, contentArg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async fastGet(pathArg: string) {
|
||||||
|
const path = plugins.path.join(this.getBasePath(), pathArg);
|
||||||
|
await this.bucketRef.fastGet(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async fastRemove(pathArg: string) {
|
||||||
|
const path = plugins.path.join(this.getBasePath(), pathArg);
|
||||||
|
await this.bucketRef.fastRemove(path);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user