2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 07:00:49 +00:00
restic/internal/fs/deviceid_windows.go
Alexander Neumann 6caeff2408 Run goimports
2017-07-23 14:21:03 +02:00

16 lines
319 B
Go

// +build windows
package fs
import (
"os"
"github.com/restic/restic/internal/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")
}