I want to read dicom tags from dicomdir. How can i check if file is a dicomdir? Now, i'm trying like that, but i know that some files haven't dicomdir in name.
if (fi_name.Contains("DICOMDIR"))
{
DicomDirectory fi_dicomdir = new DicomDirectory(fi);
fi_dicomdir.Load(fi);
}