seaweedfs/go/filer/filer.go

20 lines
545 B
Go
Raw Normal View History

2014-04-10 00:44:58 +08:00
package filer
import ()
type FileId string //file id on weedfs
type FileEntry struct {
Name string //file name without path
Id FileId
}
type Filer interface {
CreateFile(filePath string, fid string) (err error)
FindFile(filePath string) (fid string, err error)
ListDirectories(dirPath string) (dirs []DirectoryEntry, err error)
ListFiles(dirPath string, lastFileName string, limit int) (files []FileEntry, err error)
DeleteDirectory(dirPath string, recursive bool) (err error)
2014-04-10 00:44:58 +08:00
DeleteFile(filePath string) (fid string, err error)
}