in greengrass-opcua-adapter-nodejs/config_agent.js [69:75]
function confirmFileExist(path) {
if (fs.existsSync(path + '/' + serverConfigfileName) &&
fs.existsSync(path + '/' + clientConfigfileName)) {
return true;
}
return false;
}