tags:

views:

404

answers:

1

Hi,

I want to Check whether a NSF file is Encrypted or not (using C#). And if it Encrypted i want to Decrypt those NSF Files and Save them on different path. Currently i am using " Domino.dll".

+1  A: 

If you drop into the "C API" for Notes, there is a method named NIFDbIsLocallyEncrypted, which returns a boolean. There is some sample code here. For background on the Notes C API Toolkit, see here

Ed Schembor