How to identify and get the sqlserver data files filepath - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T23:07:10Zhttp://stackoverflow.com/feeds/question/1010881http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1010881/how-to-identify-and-get-the-sqlserver-data-files-filepath0How to identify and get the sqlserver data files filepathCute2009-06-18T05:19:17Z2009-06-21T07:02:29Z
<p>I am afraid that i am unable to locate the absolute path of the SQL SERVER data files.</p>
<p>I have tried to so do by doing the following.</p>
<pre><code> foreach( Database db in srv.Databases)
string filepath=db.PrimaryFilepath;
string name=db.Name;
abspth=filepath+"//"+name+".mdf";
</code></pre>
<p>Like this i have workaround.But is there is any alternative to get the absolute path.</p>
<p>But in case of logfiles it gives absolute path.......</p>
<p>Help me in this regard...</p>
<p>Thanks in Advance.</p>
http://stackoverflow.com/questions/1010881/how-to-identify-and-get-the-sqlserver-data-files-filepath/1010917#10109172Answer by marc_s for How to identify and get the sqlserver data files filepathmarc_s2009-06-18T05:33:59Z2009-06-18T05:33:59Z<p>The <code>Database</code> in SMO should contain a <code>Filegroups</code> collection which in turn contains a <code>Files</code> collection - you should find your file path's in there.</p>
<pre><code> foreach(FileGroup fg in db.FileGroups)
{
foreach(DataFile df in fg.Files)
{
Console.WriteLine("File path: {0}", df.FileName);
}
}
</code></pre>
<p>Marc</p>