24 lines
679 B
Go
24 lines
679 B
Go
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package nodefs
|
|
|
|
import (
|
|
"github.com/hanwen/go-fuse/fuse"
|
|
)
|
|
|
|
// Mounts a filesystem with the given root node on the given directory
|
|
func MountRoot(mountpoint string, root Node, opts *Options) (*fuse.Server, *FileSystemConnector, error) {
|
|
conn := NewFileSystemConnector(root, opts)
|
|
|
|
mountOpts := fuse.MountOptions{}
|
|
if opts != nil && opts.Debug {
|
|
mountOpts.Debug = opts.Debug
|
|
}
|
|
s, err := fuse.NewServer(conn.RawFS(), mountpoint, &mountOpts)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return s, conn, nil
|
|
}
|