ls: now it works properly.
This commit is contained in:
parent
348ac923be
commit
12bb16228e
1 changed files with 14 additions and 15 deletions
29
ls/ls.go
29
ls/ls.go
|
@ -44,33 +44,31 @@ func Stat(p string) (os.FileInfo, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func ls(p string, fold int) error {
|
func ls(p string, fold int) error {
|
||||||
if fold == 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
isDir, e := IsDir(p)
|
isDir, e := IsDir(p)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
|
|
||||||
pp := strings.TrimRight(p, "/")
|
pp := strings.TrimRight(p, "/")
|
||||||
if isDir && !dirFlag {
|
|
||||||
l, e := ReadDir(p)
|
|
||||||
|
|
||||||
if e != nil {
|
if !isDir || dirFlag || fold<1 {
|
||||||
|
fmt.Println(pp);
|
||||||
|
}else{
|
||||||
|
l, e := ReadDir(pp)
|
||||||
|
if e!=nil {
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
for _, f := range l {
|
for _, f := range l {
|
||||||
s := pp+"/"+f.Name()
|
s := pp+"/"+f.Name()
|
||||||
fmt.Println(s)
|
if b, _:=IsDir(s) ; b {
|
||||||
ls(s, fold-1)
|
fmt.Println(s)
|
||||||
|
}
|
||||||
|
if 0<fold {
|
||||||
|
ls(s, fold-1)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
f, e := Stat(p)
|
|
||||||
if e != nil {
|
|
||||||
return e
|
|
||||||
}
|
|
||||||
fmt.Println(f.Name())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -103,9 +101,10 @@ func Run(args []string) int {
|
||||||
fmt.Fprintf(os.Stderr, "%s: %s.\n", arg0, e)
|
fmt.Fprintf(os.Stderr, "%s: %s.\n", arg0, e)
|
||||||
} else {
|
} else {
|
||||||
for _, f := range l {
|
for _, f := range l {
|
||||||
e := ls(f.Name(), foldLvl)
|
e := ls(f.Name(), foldLvl-1)
|
||||||
if e!=nil {
|
if e!=nil {
|
||||||
status = 1
|
status = 1
|
||||||
|
fmt.Fprintf(os.Stderr, "%s: %s.\n", arg0, e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue