Scenario:
In this video we will learn how to download a file from FTP Server Folder to Local Folder and then delete from the FTP Server Folder.Items we will learn this video
- How to create SSIS Package from Scratch
- How to Create FTP Connection
- How to create variables to save Local Path, Remote Path and FileName
- How to use variables in Script Task to Download the file and then Delete after download if file exists
- How to use FTP Connection in Script Task in SSIS Package
VB.Net Script to download File from FTP Server and then Delete
Public Sub Main() Dim StrFolderArrary As String() Dim StrFileArray As String() Dim fileName As String Dim RemoteDirectory As String Dim LocalFolderPath As String 'Set Local Variable values by using SSIS Package variables RemoteDirectory = Dts.Variables("User::RemoteDirectory").Value.ToString() LocalFolderPath = Dts.Variables("User::LocalFolder").Value.ToString() Dim cm As ConnectionManager = Dts.Connections("FTPConnection") 'FTP connection manager name Dim ftp As FtpClientConnection =
New FtpClientConnection(cm.AcquireConnection(Nothing)) ftp.Connect() 'Connecting to FTP Server 'Provide the Directory on which you are working on FTP Server ftp.SetWorkingDirectory(RemoteDirectory) 'Get all the files and Folders List ftp.GetListing(StrFolderArrary, StrFileArray) 'If there is no file in the folder, strFile Arry will contain nothing, so close the connection. If StrFileArray Is Nothing Then ftp.Close() 'If Files are there, Loop through the StrFileArray arrary and download the file
'and then delete Else For Each fileName In StrFileArray 'Check if require file is there If fileName = Dts.Variables("User::FileName").Value.ToString() Then Dim DownloadFileNameArrary As String() DownloadFileNameArrary = {RemoteDirectory + "/" + fileName} 'Download the file ftp.ReceiveFiles(DownloadFileNameArrary, LocalFolderPath, True, True) 'Delete the file ftp.DeleteFiles(DownloadFileNameArrary) End If Next ftp.Close() End If ' Add your code here ' Dts.TaskResult = ScriptResults.Success End Sub
Related Posts / Videos on FTP Task / Script Task
- FTP Task - How to Upload Single File to FTP Server from Local Folder in SSIS Package
- FTP Task - How to Download Single File from FTP Server to Local Folder in SSIS Package
- FTP Task - How to Upload Multiple Files from Local Folder To FTP Server Folder in SSIS Package
- FTP Task - How to Download All the files from FTP Server Folder to Local Folder in SSIS Package
- FTP Task - Filter Files by using WildCard in FTP Task in SSIS Package for downloading
- FTP Task - Delete Specific Files or All Files from FTP Server Folder by using SSIS Package
- FTP Task - Download Only Current Day Files from FTP Server by using FTP Task in SSIS Package
- FTP Task - Create A Directory Folder For Each Day and Load Files on FTP Server by using SSIS Package
- Get File Names from FTP Server and Save to SQL Server Table in SSIS Package by using Script Task
- FTP Task and Script Task - How to Avoid FTP Task error when no file found on FTP Server
- FTP Task and Script Task - How to Delete Folder with Files from FTP Server by using SSIS Package
- FTP Task and Script Task - Sync Local Folder to FTP Server Folder without Upload Existing Files by SSIS Package
- Sync FTP Folder to Local Folder without Downloading Existing Files by using Script Task in SSIS Package
- FTP Task/Script Task - Rename File on FTP Server After Downloading in SSIS Package
- FTP Task/Script Task -How to move file from one folder to another folder on FTP server by using SSIS Package
- FTP Task - Create Local Folder with Date on Daily basis and load files from FTP Folder in SSIS Package
- FTP Task - How to Save Password,User Name,Ftp Server Name as variables/Parameters in SSIS Package to make SSIS Package Dynamic to run in SIT, UAT, QA and Prod.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.