Adding metadata properties is the most sophisticated feature of the GroupDocs.Metadata search engine. When you call the addProperties method it examines all available metadata packages and tries to pick up a known property that would satisfy the specified predicate. Note that the property will be added to metadata packages that fit the following criteria:
Only existing metadata packages will be affected. No new packages are added during this operation
There should be a known metadata property in the package structure that fits the search condition but is actually missing in the package. All properties supported by a certain package are usually defined in the specification of a particular metadata standard
advanced_usage.AddingMetadata
fs.readdirSync(Constants.inputPath).forEach(file=>{varmetadata=newgroupdocs.metadata.Metadata(Constants.inputPath+file);if(metadata.getFileFormat()!=groupdocs.metadata.FileFormat.Unknown&&!metadata.getDocumentInfo().isEncrypted()){console.log(file);// Add a property containing the file last printing date if it's missing
// Note that the property will be added to metadata packages that satisfy the following criteria:
// 1) Only existing metadata packages will be affected. No new packages are added during this operation
// 2) There should be a known metadata property in the package structure that fits the search condition but is actually missing in the package.
// All properties supported by a certain package are usually defined in the specification of a particular metadata standard
varaffected=metadata.addProperties(newgroupdocs.metadata.ContainsTagSpecification(groupdocs.metadata.Tags.getTime().getPrinted()),newgroupdocs.metadata.PropertyValue(newDate()));console.log(`Affected properties: ${affected}`);}});
More resources
Advanced usage topics
To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples: