vote up 0 vote down star

Hi

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.

flag

37% accept rate

1 Answer

vote up 1 vote down
    foreach (FileGroup fg in database.FileGroups)
    {
        foreach (DataFile df in fg.Files)
        {
            Console.WriteLine(Path.Combine(database.PrimaryFilePath, df.Name);
        }
    }
link|flag

Your Answer

Get an OpenID
or

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