Application.FolderExistsOnSqlServer Method
Returns a Boolean that indicates whether the specified folder already exists on the instance of SQL Server.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
public bool FolderExistsOnSqlServer( string strFolderName, string strServerName, string strServerUserName, string strServerPassword )
Parameters
- strFolderName
- Type: System.String
The folder you are looking for.
- strServerName
- Type: System.String
The name of the instance of SQL Server to search for the package.
- strServerUserName
- Type: System.String
The user name to authenticate against the instance of SQL Server.
- strServerPassword
- Type: System.String
The password for the given strserverUserName.
Return Value
Type: System.Booleantrue if the folder exists on the specified instance of SQL Server; false if the folder does not exist.
The following code example creates a folder on SQL Server, renames it, and then removes it. It also verifies the existence of the folder by using FolderExistsOnSqlServer.
static void Main(string[] args) { // The variable pkg points to the location // of the ExecuteProcess package sample // that is installed with the SSIS samples. string pkg = @"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx"; Application app = new Application(); app.CreateFolderOnSqlServer("\\", "myNewFolder", "yourserver", null, null); // Verify that the folder was created. Boolean ssFolder = app.FolderExistsOnSqlServer("\\myNewFolder", "yourserver", null, null); Console.WriteLine("myNewFolderExists? " + ssFolder); // Rename the myNewFolder to myRenamedFolder. app.RenameFolderOnSqlServer("\\", "myNewFolder", "myRenamedFolder", "yourserver", null, null); // Verify that the old folder does not exist. ssFolder = app.FolderExistsOnSqlServer("\\myNewFolder", "yourserver", null, null); Console.WriteLine("myNewFolderExists has been renamed but still exists? " + ssFolder); // Verify that a folder with the new name does exist. ssFolder = app.FolderExistsOnSqlServer("\\myRenamedFolder", "yourserver", null, null); Console.WriteLine("myRenamedFolder now exists? " + ssFolder); // Delete the folder. app.RemoveFolderFromSqlServer("\\myRenamedFolder", "yourserver", null, null); // Verify that the folder was removed. ssFolder = app.FolderExistsOnSqlServer("\\myRenamedFolder", "yourserver", null, null); Console.WriteLine("myRenamedFolder still exists? " + ssFolder); }
Sample Output:
myNewFolderExists? True
myNewFolderExists has been renamed but still exists? False
myRenamedFolder now exists? True
myRenamedFolder still exists? False