aboutsummaryrefslogtreecommitdiff
path: root/go/filer/filer.go
blob: a42d9ed8cae5da5e2ffb90a31aec0661f25a2fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)
	DeleteFile(filePath string) (fid string, err error)
}