2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-23 13:17:42 +00:00
restic/internal/fs/deviceid_windows.go

17 lines
337 B
Go
Raw Normal View History

2022-03-28 20:23:47 +00:00
//go:build windows
// +build windows
package fs
import (
"os"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/errors"
)
2024-08-27 12:35:10 +00:00
// deviceID extracts the device ID from an os.FileInfo object by casting it
// to syscall.Stat_t
2024-08-27 12:35:10 +00:00
func deviceID(_ os.FileInfo) (deviceID uint64, err error) {
return 0, errors.New("Device IDs are not supported on Windows")
}