SQL Server Integration Services (SSIS) – Delete local folder using FTP Task in SSIS Package


Introduction

In this article we are going to see how to use a FTP task in SSIS package to delete a local folder using FTP Task in SSIS packaging.

To follow my series of articles on SSIS packages refer to my profile for the links!!!

Steps:

Follow steps 1 to 3 in my first article to open the BIDS project and select the right project to work on the integration services project. Once the project is created, we will see how to use FTP task container. Drag and drop the FTP task as shown in the screen below.



Now double-click on the task to open the property window and set the properties as shown in the screen below.



The above image is for setting the FTP Connection; the end user needs to provide the correct connection settings and can click on Test Connection to confirm that the connection is valid. 

Now in the file transfer tab we need to set the property since in our example we are going to delete a folder in the local box we need to set as below. Here an input variable is used to get the path for deleting the folders locally.



Here once you have given valid credentials by running directly, the package will delete the folder in the local box using the FTP Task.

Conclusion

So in this article we have seen how to delete a folder in the local machine.


Similar Articles