blob: 3b1ddbdbbcca7cde05d156f6065029f840a0389e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// +build !cgo,!plan9 windows android
package sftp
import (
"os"
"path"
)
func runLs(dirname string, dirent os.FileInfo) string {
return path.Join(dirname, dirent.Name())
}
|