Hi everyone, I am working with ftp on file zilla, I want to download files to my local folder, I already have the activity for file exists and to download files to my local path but now the issue is in the path where there are files, it says no files exists even if there are there:
The naming of the file is like this
The only thing that is dynamic is the date after ‘Sales’ where I had put ‘var’.
Everything else there is the same.
The name of the file is like this: Cellular Device Sales 1feb-30Mar.xlsx
I believe “Var” is the variable which you used to store the date value. If it is so , the path should be “TobeProcessed/Cellular Device Sales”+Var+“.xlsx” .
The use of var looks wrong…the way you gave ,it is considered as string and not as variable
Try "stringvalue" + var + "stringvaleu"
Also not sure if youa re avle to calculate the exact value…one more way is to get the files and chceck if the name matches…enumerate objects activity will help in it
‘var’ is a date which is dynamic because sometimes it’s another date,when the file is uploaded only the date changes
e.g. Cellular Device Sales 1feb-30Mar.xlsx
Since the dates aren’t within a month, you can’t make this dynamic. Are if there are specific dates like start of present month and end of present month it will be fine. But the dates are specific in the given picture