I am trying to get a SSIS task working .
SSIS Task has the following
a) FTP tasks - Task to FTP all the directory contents to an FTP Server . This directory typically has all the image types ( bmp , jpg , tif , so on ) . In for each loop container container , I am setting the files in collection attribution as '*.*' .
When I am running the task , this task tries to FTP 'Thumbs.db' ( hidden system file ) as well and fails .
Error: An error occurred in the requested FTP operation. Detailed error description: 200 Type set to I.
200 PORT command successful.
550 /FTPRemote/Thumbs.db: Access is denied.
b) File System Task - After successful FTP , I am deleting the directory contents . Again this is trying to delete the 'Thumbs.db' that fails.
The process cannot access the file '\\srcDirectory\Thumbs.db' because it is being used by another process.
How to exclude the hidden files from picking it up in FTP transmission Or deletion ?
Thanks in advance.