blob: 3b1ddbdbbcca7cde05d156f6065029f840a0389e [file] [log] [blame]
// +build !cgo,!plan9 windows android
package sftp
import (
"os"
"path"
)
func runLs(dirname string, dirent os.FileInfo) string {
return path.Join(dirname, dirent.Name())
}