Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Find initialization, exclude specifg folder?

Vote:
 

Hi,

We want index pdf's from Folder 1 and Folder 4, how we do that ?

Folder 1

-- pdffile1

Folder 2

--SubFolder

-----Pdfflile2

Folder 4

-- pdffile3

Thanks!

#218470
Mar 13, 2020 10:45
Vote:
 

This should work (pseudo code)

Conventions.ForInstancesOf<PdfFile>()
                .ShouldIndex(x => 
                     {
var ancestors = _contentLoader.GetAncestors(x.ContentLink);
return !ancestors.Contains(folder2ContentLink);
}

                    );
#218476
Mar 13, 2020 11:21
Vote:
 

Thanks, i'll try :)

#218477
Mar 13, 2020 11:23
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.