File: diff_windows.go

package info (click to toggle)
continuity 0.0~git20180216.d8fb858-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 620 kB
  • sloc: makefile: 46; sh: 28; asm: 3
file content (32 lines) | stat: -rw-r--r-- 563 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package fs

import (
	"os"

	"golang.org/x/sys/windows"
)

func detectDirDiff(upper, lower string) *diffDirOptions {
	return nil
}

func compareSysStat(s1, s2 interface{}) (bool, error) {
	f1, ok := s1.(windows.Win32FileAttributeData)
	if !ok {
		return false, nil
	}
	f2, ok := s2.(windows.Win32FileAttributeData)
	if !ok {
		return false, nil
	}
	return f1.FileAttributes == f2.FileAttributes, nil
}

func compareCapabilities(p1, p2 string) (bool, error) {
	// TODO: Use windows equivalent
	return true, nil
}

func isLinked(os.FileInfo) bool {
	return false
}