seaweedfs/weed/filer/filer.go

30 lines
910 B
Go
Raw Normal View History

2014-04-09 16:44:58 +00:00
package filer
2016-09-08 03:35:54 +00:00
import (
"errors"
)
type FileId string //file id in SeaweedFS
2014-04-09 16:44:58 +00:00
type FileEntry struct {
2014-05-13 05:57:23 +00:00
Name string `json:"name,omitempty"` //file name without path
Id FileId `json:"fid,omitempty"`
2014-04-09 16:44:58 +00:00
}
2018-05-05 09:01:50 +00:00
type DirectoryName string
2014-04-09 16:44:58 +00:00
type Filer interface {
CreateFile(fullFileName string, fid string) (err error)
FindFile(fullFileName string) (fid string, err error)
DeleteFile(fullFileName string) (fid string, err error)
//Optional functions. embedded filer support these
2018-05-05 09:01:50 +00:00
ListDirectories(dirPath string) (dirs []DirectoryName, err error)
2014-04-09 16:44:58 +00:00
ListFiles(dirPath string, lastFileName string, limit int) (files []FileEntry, err error)
DeleteDirectory(dirPath string, recursive bool) (err error)
Move(fromPath string, toPath string) (err error)
2018-05-05 09:01:50 +00:00
LookupDirectoryEntry(dirPath string, name string) (found bool, fileId string, err error)
2014-04-09 16:44:58 +00:00
}
2016-09-08 03:35:54 +00:00
var ErrNotFound = errors.New("filer: no entry is found in filer store")