mirror of
https://github.com/restic/restic.git
synced 2025-10-11 03:12:38 +00:00
Moves files
This commit is contained in:
15
internal/fs/deviceid_windows.go
Normal file
15
internal/fs/deviceid_windows.go
Normal file
@@ -0,0 +1,15 @@
|
||||
// +build windows
|
||||
|
||||
package fs
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"restic/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")
|
||||
}
|
Reference in New Issue
Block a user