574862fd89
Add diff comparison with support for double walking two trees for comparison or single walking a diff tree. Single walking requires further implementation for specific mount types. Add directory copy function which is intended to provide fastest possible local copy of file system directories without hardlinking. Add test package to make creating filesystems for test easy and comparisons deep and informative. Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
7 lines
118 B
Go
7 lines
118 B
Go
package fs
|
|
|
|
import "os"
|
|
|
|
func getHardLink(string, os.FileInfo, map[uint64]string) (string, error) {
|
|
return "", nil
|
|
}
|