aboutsummaryrefslogtreecommitdiff
path: root/go/filer/directory.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/filer/directory.go')
-rw-r--r--go/filer/directory.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/go/filer/directory.go b/go/filer/directory.go
deleted file mode 100644
index 956a2f504..000000000
--- a/go/filer/directory.go
+++ /dev/null
@@ -1,20 +0,0 @@
-package filer
-
-import ()
-
-type DirectoryId int32
-
-type DirectoryEntry struct {
- Name string //dir name without path
- Id DirectoryId
-}
-
-type DirectoryManager interface {
- FindDirectory(dirPath string) (DirectoryId, error)
- ListDirectories(dirPath string) (dirs []DirectoryEntry, err error)
- MakeDirectory(currentDirPath string, dirName string) (DirectoryId, error)
- MoveUnderDirectory(oldDirPath string, newParentDirPath string) error
- DeleteDirectory(dirPath string) error
- //functions used by FUSE
- FindDirectoryById(DirectoryId, error)
-}