if(path != null && !path.equals(""))
{
if(logger.isDebugEnabled())
logger.debug("path:" + path);
DesEncryptionHelper desEncryptionHelper = new DesEncryptionHelper();
String decryptedPath = desEncryptionHelper.decrypt(path);
if(logger.isDebugEnabled())
logger.debug("decryptedPath:" + decryptedPath);
File file = new File(decryptedPath);
if(file.exists() && file.isFile())