aboutsummaryrefslogtreecommitdiff
path: root/fs/fs.go
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fs.go')
-rw-r--r--fs/fs.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/fs.go b/fs/fs.go
index cbfeb44..b06ded8 100644
--- a/fs/fs.go
+++ b/fs/fs.go
@@ -29,10 +29,13 @@ type RegularFile interface {
type Dir interface {
File
Readdir() ([]File, error)
+ GetChild(name string) (File, error) // Must return os.ErrNotExist, if child doesn't exist
CreateChildFile(name string, exec bool) (RegularFile, error)
CreateChildDir(name string) (Dir, error)
CreateChildSymlink(name string, target string) (Symlink, error)
+
+ RenameChild(oldname, newname string) error
}
type Symlink interface {