backup: allow excluding online-only cloud files

This commit is contained in:
Michael Wildman
2024-08-08 22:48:03 +12:00
committed by Michael Eischer
parent de3acd7937
commit da71e77b28
8 changed files with 154 additions and 1 deletions

View File

@@ -32,3 +32,8 @@ func extendedStat(fi os.FileInfo) *ExtendedFileInfo {
ChangeTime: time.Unix(s.Ctim.Unix()),
}
}
// RecallOnDataAccess checks windows-specific attributes to determine if a file is a cloud-only placeholder.
func (*ExtendedFileInfo) RecallOnDataAccess() (bool, error) {
return false, nil
}