SSIS package FTP request error: directory not specified in the file connection manager "User :: ProcessingFileLocation"

I have one SSIS package with an FTP task that takes files from FTP and saves to my local drive, but I get this error:

[FTP Task] Error: Directory is not specified in the file connection manager "User::ProcessingFileLocation"

In the settings of the FTP editor:

User::ProcessingFileLocation using the SSIS variable

Values ​​on this: \\MYSERVER\\Raw Data\\

Why this error is needed for any solution. When I mention the direct path, it works fine, but has an error with a variable :(

+4
source share
2 answers

Another solution to this problem might be the one that influenced me.

The FTP task does not create the path specified in LocalVariable ; be sure to manually create the destination folders.

+1
source

Override the UNC path using the local path in the Integration Services directory, Connection Manager. Right click on the project and select configure

0
source

All Articles