1
0
mirror of https://github.com/rclone/rclone.git synced 2025-02-14 21:23:01 +02:00
rclone/vendor/github.com/pkg/sftp/server_stubs.go
2017-02-04 10:29:18 +00:00

13 lines
179 B
Go

// +build !cgo,!plan9 windows android
package sftp
import (
"os"
"path"
)
func runLs(dirname string, dirent os.FileInfo) string {
return path.Join(dirname, dirent.Name())
}