How may I find out the target language of a report when saving it?

Hi everyone!

I'm saving a report as shown below:

 

AutomaticTask analyzeTask = project.RunAutomaticTask( targetFiles.GetIds(),AutomaticTaskTemplateIds.AnalyzeFiles);

  foreach (TaskReport report in analyzeTask.Reports)
{ project.SaveTaskReportAs (report.Id, Path.Combine("C:\", report.Id), ReportFormat.Excel);
}

 

Where "project" is a FileBasedProject containing multiple target languages.

 

How may I find out the target language the each saved report is in? 

I hope to save the report with target language as file name.

Thanks for reading!