jacomh
Hi! I have some questions about the fxp transfers:
How can I have multiple fxp transfers (at the same thime)?
If this is not possible, how can I iterate over FTPItems to transfer the files from source to destination (with the FXPFile method)?
foreach (FTPItem item in _exclusiveItemsInSource)
{
Console.WriteLine("Comienza el envio del fichero: {0}", item.Name);
_fxp.FXPFile(item.Name, item.Name, 0, 0);
Console.WriteLine("Finaliza el envio del fichero: {0}", item.Name);
}
This code is not working for me.
Thank You in advance.
How can I have multiple fxp transfers (at the same thime)?
If this is not possible, how can I iterate over FTPItems to transfer the files from source to destination (with the FXPFile method)?
foreach (FTPItem item in _exclusiveItemsInSource)
{
Console.WriteLine("Comienza el envio del fichero: {0}", item.Name);
_fxp.FXPFile(item.Name, item.Name, 0, 0);
Console.WriteLine("Finaliza el envio del fichero: {0}", item.Name);
}
This code is not working for me.
Thank You in advance.