public static bool SafeFileExists(
     string filePath)
 {
     return(!string.IsNullOrEmpty(filePath) && ZlpIOHelper.FileExists(filePath));
 }