mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9ce2b30b81
Signed-off-by: Cory Snider <csnider@mirantis.com>
13 lines
416 B
Go
13 lines
416 B
Go
package containerfs // import "github.com/docker/docker/pkg/containerfs"
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"github.com/moby/sys/symlink"
|
|
)
|
|
|
|
// ResolveScopedPath evaluates the given path scoped to the root.
|
|
// For example, if root=/a, and path=/b/c, then this function would return /a/b/c.
|
|
func ResolveScopedPath(root, path string) (string, error) {
|
|
return symlink.FollowSymlinkInScope(filepath.Join(root, path), root)
|
|
}
|