Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Removes the specified folder from the specified server.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Sub RemoveFolderFromDtsServer ( _
sFolderName As String, _
sServerName As String _
)
'Usage
Dim instance As Application
Dim sFolderName As String
Dim sServerName As String
instance.RemoveFolderFromDtsServer(sFolderName, _
sServerName)
public void RemoveFolderFromDtsServer(
string sFolderName,
string sServerName
)
public:
void RemoveFolderFromDtsServer(
String^ sFolderName,
String^ sServerName
)
member RemoveFolderFromDtsServer :
sFolderName:string *
sServerName:string -> unit
public function RemoveFolderFromDtsServer(
sFolderName : String,
sServerName : String
)
Parameters
- sFolderName
Type: System.String
The name of the folder to remove.
- sServerName
Type: System.String
The name of the server where the folder is located.
Examples
The following code example removes a folder, named myfolder, from the file system.
static void Main(string[] args)
{
Application app = new Application();
app.RemoveFolderFromDtsServer(@"File System\myFolder", "yourserver);
}
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
app.RemoveFolderFromDtsServer("File System\myFolder", "yourserver)
End Sub