Scenario:
We download file for each of the day from FTP Task. Once the file is successfully downloaded to the local folder we want to mark that file as downloaded, By doing that our vendor knows that that we have downloaded the file and also we can always take a look which files we have downloaded.Solution:
We will be using Script Task to handle this requirement. We will download the file and after that add _Downloaded at the end of file.What we will learn in this video
- We will learn how to Create an SSIS Package
- How to Create Package Parameters for FTP Server, User Name, Password, Remote Path and Local Folder
- How to use Package Parameters in SSIS Package
- How to download file from FTP Server to Local Folder by using Script Task in SSIS Package
- How to Rename File on FTP Server by using Script Task in SSIS Package
Expression used to set the value of VarFileName variable
@[$Package::FileName]+Replace(Substring((DT_WSTR,30)GETDATE(),1,10),"-","")+".txt"
Script to use in Script Task in SSIS Package to Download and Mark as Downloaded on FTP Server
string UserName; string Password; string LocalFolder; string FileName; string FTPFileFullPath; UserName = Dts.Variables["$Package::UserName"].Value.ToString(); Password = Dts.Variables["$Package::Password"].Value.ToString(); LocalFolder = Dts.Variables["$Package::LocalFolder"].Value.ToString(); FTPFileFullPath = Dts.Variables["$Package::FTPServer"].Value.ToString() + Dts.Variables["$Package::RemoteFolder"].Value.ToString() + Dts.Variables["User::VarFileName"].Value.ToString(); FileName = Dts.Variables["User::VarFileName"].Value.ToString(); //# move file to remote server //Download the file to local folder WebClient Webrequest = new WebClient(); Webrequest.Credentials = new NetworkCredential(UserName, Password); MessageBox.Show(FTPFileFullPath); byte[] newFileData = Webrequest.DownloadData(FTPFileFullPath); File.WriteAllBytes(LocalFolder+FileName, newFileData); //Rename the file to downloaded FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(FTPFileFullPath); ftpRequest.Credentials = new NetworkCredential(UserName, Password); ftpRequest.Method = WebRequestMethods.Ftp.Rename; ftpRequest.RenameTo = FileName.Replace(".","_Downloaded."); FtpWebResponse ftpResp = (FtpWebResponse)ftpRequest.GetResponse();
How to Rename a File on FTP Server by using Script Task in SSIS Package
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 - Download a File from FTP Site and Delete after Download in 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 -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.
This actually is a very useful and informative blog post about SSIS and I guess every aspect is covered meticulously.
ReplyDeleteSSIS Upsert