Check document password-protection
GroupDocs.Merger allows to check document for password-protection. The result will be true if document has password for opening set, in other case false will be returned.
Here are the steps to check document password-protection:
- Instantiate Merger object with source document path or stream;
- Call IsPasswordSet method.
The following code sample demonstrates how to check document password-protection.
bool isPasswordSet = false;
string filePath = @"C:\sample.xlsx";
using (Merger merger = new Merger(filePath))
{
isPasswordSet = merger.IsPasswordSet();
}
More resources
Advanced Usage Topics
To learn more about document merging features, please refer the advanced usage section.
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Merger for .NET examples, plugins and showcase
- GroupDocs.Merger for Java examples, plugins and showcase
Free Online App
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to merge your documents with our free online GroupDocs Merger App.