Application.FolderExistsOnDtsServer Method
SQL Server 2008 R2
Returns a Boolean that indicates whether the specified folder already exists on the file system.
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Parameters
- sFolderName
- Type: System.String
The name of the folder you are looking for. For example, to see if a folder name myFolder exists under the File System folder, use the escaped string, @"\File System\myFolder".
- sServerName
- Type: System.String
The name of the server to search for the package.
Return Value
Type: System.Booleantrue if the folder specified exists on the server; false if the folder does not exist.
The following code example queries the File System to determine whether a folder that was created previously, named myFolder, exists.
class PackageTest { static void Main(string[] args) { Application app = new Application(); Package p = app.LoadPackage(pkg, null); String folderName = @"\File System\myFolder"; String serverName = "yourserver"; Boolean folderExists = app.FolderExistsOnDtsServer(folderName, serverName); Console.WriteLine("Folder exists? " + folderExists); } }
Sample Output:
Folder exists? True
