Application.RemoveFolderFromDtsServer(String, String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Supprime le dossier spécifié du serveur spécifié.
public:
void RemoveFolderFromDtsServer(System::String ^ sFolderName, System::String ^ sServerName);
public void RemoveFolderFromDtsServer (string sFolderName, string sServerName);
member this.RemoveFolderFromDtsServer : string * string -> unit
Public Sub RemoveFolderFromDtsServer (sFolderName As String, sServerName As String)
Paramètres
- sFolderName
- String
Nom du dossier à supprimer.
- sServerName
- String
Nom du serveur où se trouve le dossier.
Exemples
L’exemple de code suivant supprime un dossier nommé myfolder
, du système de fichiers.
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