mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 20:37:49 +00:00
17 lines
338 B
Go
17 lines
338 B
Go
//go:build windows
|
|
// +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")
|
|
}
|