1
mirror of https://github.com/rclone/rclone synced 2024-10-01 07:24:48 +02:00

ListContainsExcludeFile: checks for exclude file in the list

This commit is contained in:
Iakov Davydov 2017-11-16 15:38:00 +01:00 committed by Nick Craig-Wood
parent 421ba84e12
commit 5d05df3124

View File

@ -385,6 +385,23 @@ func (f *Filter) includeRemote(remote string) bool {
return true
}
// ListContainsExcludeFile checks if exclude file is present in the list.
func (f *Filter) ListContainsExcludeFile(entries DirEntries) bool {
if len(f.ExcludeFile) == 0 {
return false
}
for _, entry := range entries {
obj, ok := entry.(Object)
if ok {
basename := path.Base(obj.Remote())
if basename == f.ExcludeFile {
return true
}
}
}
return false
}
// IncludeDirectory returns whether this directory should be included
// in the sync or not.
func (f *Filter) IncludeDirectory(remote string) bool {