How to identify and get the sqlserver data files filepath - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:07:10Z http://stackoverflow.com/feeds/question/1010881 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1010881/how-to-identify-and-get-the-sqlserver-data-files-filepath 0 How to identify and get the sqlserver data files filepath Cute 2009-06-18T05:19:17Z 2009-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#1010917 2 Answer by marc_s for How to identify and get the sqlserver data files filepath marc_s 2009-06-18T05:33:59Z 2009-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>