SQL SMO and remote file system
I'm making an application that connects to SQL Server 2005 and programmatically creates database.And I want to give user an opportunity to choose the location for database files.(Like in SQL Server Management Studio)
If SQL Server located on local machine - there is no problem - I show user FolderBrowserDialog and he's happy. :)
But if SQL Server located on remote machine - I can't access remote file system through FolderBrowserDialog. So what can I do? I've heard that I can use SMO. But how?

