tags:

views:

14

answers:

0

Hello out there! I need help....

I have several .resx files containing Adobe Illustrator files. Is there a way to get the FileName of each file, not the "name".... The FileName contains the path and the name is...well...just the name. This only gets me the 'name' and contents.

            resxReader = new ResXResourceReader(resxPathName);

            //Enumerate the elements within the resx file and dispaly them
            foreach (DictionaryEntry d in resxReader)
            {
                MessageBox.Show(d.Key.ToString() + " : " + d.Value.ToString());
            }

Thanks Everyone!