private string GenerateDdcFilePath(string filePath)
        {
            var platform    = filePath.GetPlatform();
            var ddcFilePath = Path.Combine(Path.GetDirectoryName(filePath), String.Format("{0}{1}{2}",
                                                                                          Path.GetFileNameWithoutExtension(filePath).StripPlatformEndName().GetValidFileName().Replace("_DD", "").Replace("_NDD", ""),
                                                                                          IsNDD ? "_NDD" : "_DD", Packer.GetPlatformEndName(platform)));

            return(ddcFilePath);
        }