How to associate search catalog file (.pdx) with PDF document
问题 Using a .NET application, I am trying to create a PDF "table of contents" that references other files, like one would distribute on a DVD etc. For this purpose, I need a search index and catalog, so full-text search will work across documents. I have been able to automate the construction of the index by copying an "old" .pdx file (the directory structure is always the same) and then calling JavaScript from C#: var js = $@"catalog.getIndex(""{pdxFilePath}"").build('alert(""Hello"")', true)";