up vote 0 down vote favorite
share [g+] share [fb]

i have did like

   foreach(LogFile lf in db.Databases)
      Console.WriteLine(lf.FileName)

which displays the logfile path including extension.....My Problem is how to find the

Datafiles exact path including extension..Give me the Guidance

Any Help is Greatly Appreciated...

Thanks in Advance.

link|improve this question

36% accept rate
If my answer helped you, would you mind accepting it? – Mitch Wheat Feb 25 '11 at 1:56
feedback

1 Answer

    foreach (FileGroup fg in database.FileGroups)
    {
        foreach (DataFile df in fg.Files)
        {
            Console.WriteLine(Path.Combine(database.PrimaryFilePath, df.Name);
        }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.