Files
rest-server/fs/deviceid_windows.go
Zlatko Čalušić 93d8c2beba Copy errors & fs packages from the restic repo and fix import paths
Tedious, but I see no better way...
2016-11-05 17:33:34 +01:00

16 lines
319 B
Go

// +build windows
package fs
import (
"os"
"github.com/zcalusic/restic-server/errors"
)
// DeviceID extracts the device ID from an os.FileInfo object by casting it
// to syscall.Stat_t
func DeviceID(fi os.FileInfo) (deviceID uint64, err error) {
return 0, errors.New("Device IDs are not supported on Windows")
}