2014-04-10 00:44:58 +08:00
|
|
|
package filer
|
|
|
|
|
|
|
|
type FileId string //file id on weedfs
|
|
|
|
|
|
|
|
type FileEntry struct {
|
2014-05-13 13:57:23 +08:00
|
|
|
Name string `json:"name,omitempty"` //file name without path
|
|
|
|
Id FileId `json:"fid,omitempty"`
|
2014-04-10 00:44:58 +08:00
|
|
|
}
|
|
|
|
|
2015-01-06 06:58:30 +08:00
|
|
|
type DirectoryId int32
|
|
|
|
|
|
|
|
type DirectoryEntry struct {
|
|
|
|
Name string //dir name without path
|
|
|
|
Id DirectoryId
|
|
|
|
}
|
|
|
|
|
2014-04-10 00:44:58 +08:00
|
|
|
type Filer interface {
|
2015-01-06 06:58:30 +08:00
|
|
|
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
|
2014-07-21 14:12:49 +08:00
|
|
|
FindDirectory(dirPath string) (dirId DirectoryId, err error)
|
2014-04-10 00:44:58 +08:00
|
|
|
ListDirectories(dirPath string) (dirs []DirectoryEntry, err error)
|
|
|
|
ListFiles(dirPath string, lastFileName string, limit int) (files []FileEntry, err error)
|
2014-04-18 13:33:21 +08:00
|
|
|
DeleteDirectory(dirPath string, recursive bool) (err error)
|
2014-07-21 14:12:49 +08:00
|
|
|
Move(fromPath string, toPath string) (err error)
|
2014-04-10 00:44:58 +08:00
|
|
|
}
|