seaweedfs/go/filer/directory.go

21 lines
542 B
Go
Raw Normal View History

2014-04-09 16:44:58 +00:00
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)
2014-05-13 05:57:23 +00:00
ListDirectories(dirPath string) (dirs []DirectoryEntry, err error)
2014-04-09 16:44:58 +00:00
MakeDirectory(currentDirPath string, dirName string) (DirectoryId, error)
MoveUnderDirectory(oldDirPath string, newParentDirPath string) error
DeleteDirectory(dirPath string) error
2014-05-13 05:57:23 +00:00
//functions used by FUSE
FindDirectoryById(DirectoryId, error)
2014-04-09 16:44:58 +00:00
}