Tests whether the specified vault exists, returns true if it does and false if the datavault is locked, does not exist, or is inaccessible for any other reason.
public static bool VaultExists(string sDataVaultID)
Returns true if the vault exists; otherwise returns false.
if (DataVault.VaultExists("myVault")) { DataVault.DeleteVault("myVault"); }