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