Add method for walking directory; Changed to Entry structure.
This commit is contained in:
commit
8b23ff1923
81
ftp.go
81
ftp.go
@ -35,6 +35,8 @@ type Entry struct {
|
||||
Type EntryType
|
||||
Size uint64
|
||||
Time time.Time
|
||||
PointTo string
|
||||
PointToDir bool
|
||||
}
|
||||
|
||||
// response represent a data-connection
|
||||
@ -305,6 +307,13 @@ func parseListLine(line string) (*Entry, error) {
|
||||
e.Time = t
|
||||
|
||||
e.Name = strings.Join(fields[8:], " ")
|
||||
if e.Type == EntryTypeLink {
|
||||
name := strings.SplitN(e.Name, " -> ", 2)
|
||||
e.Name = name[0]
|
||||
if len(name) > 1 {
|
||||
e.PointTo = name[1]
|
||||
}
|
||||
}
|
||||
return e, nil
|
||||
}
|
||||
|
||||
@ -489,3 +498,75 @@ func (r *response) Close() error {
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// Make a test to check if a path (usually a link) is a directory.
|
||||
func (c *ServerConn) IsDir(path string) (bool, error) {
|
||||
curdir, err := c.CurrentDir()
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
err = c.ChangeDir(path)
|
||||
if err != nil {
|
||||
return false, nil
|
||||
}
|
||||
|
||||
err = c.ChangeDir(curdir)
|
||||
if err != nil {
|
||||
return true, err
|
||||
}
|
||||
|
||||
return true, nil
|
||||
}
|
||||
|
||||
// Function for walking directory.
|
||||
type WalkFunc func(path string, entry *Entry) error
|
||||
|
||||
// Walking a directory, and call walkfunc for each file or subdirectory.
|
||||
func (c *ServerConn) Walk(path string, followlink bool, walkfunc WalkFunc) error {
|
||||
entries, err := c.List(path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
ok, err := c.IsDir(path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if !ok && len(entries) > 0 {
|
||||
return walkfunc(path, entries[0])
|
||||
}
|
||||
|
||||
for _, e := range entries {
|
||||
p := strings.Join([]string{path, e.Name}, "/")
|
||||
|
||||
if e.Type == EntryTypeLink {
|
||||
ok, err := c.IsDir(p)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if ok {
|
||||
e.PointToDir = true
|
||||
|
||||
if followlink {
|
||||
err = c.Walk(p, followlink, walkfunc)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if e.Type == EntryTypeFolder {
|
||||
err = c.Walk(p, followlink, walkfunc)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
err = walkfunc(p, e)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user