Task List File - How to Display Files Listed - VisualCron - Forum

Please note that VisualCron support is not actively monitoring this community forum. Please use our contact page for contacting the VisualCron support directly.


DineshHirani
12 years ago
I'm looking for the keyword to use when displaying the files found while using the List Files task.

E.g. for FTP Download
{TASK(80949351-df84-4122-a945-a69651a3c4e5,Result.NoDownloadedFiles)}
{TASK(80949351-df84-4122-a945-a69651a3c4e5,Result.DownloadedFilesNames)}

What are the keyword for List Files?
Sponsor
Forum information
Support
12 years ago
Use the normal output Variable as the List files Task writes result to output:

{TASK(Active,StdOut)}

Or previous Task:

{TASK(PrevTask,StdOut)}
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
DineshHirani
12 years ago
I need to also know the number of files found, similar to Result.NoDownloadedFiles but need it for task List Files.
Support
12 years ago
There is no count Variable right now but you can put the output into this:

{STRING(RowCount|{TASK(Active,StdOut)})}
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
DineshHirani
12 years ago
grendel70
11 years ago
Originally Posted by: Support 

There is no count Variable right now but you can put the output into this:

{STRING(RowCount|{TASK(Active,StdOut)})}



Where are functions like String and features like RowCount documented? How can I use RowCount in integer compares to do things like =0, =1, >1?

Support
11 years ago
Originally Posted by: grendel70 

Originally Posted by: Support 

There is no count Variable right now but you can put the output into this:

{STRING(RowCount|{TASK(Active,StdOut)})}



Where are functions like String and features like RowCount documented? How can I use RowCount in integer compares to do things like =0, =1, >1?



They are not explicitly documented. Please tell us exactly what you want to achieve.
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
grendel70
11 years ago
Originally Posted by: Support 

Originally Posted by: grendel70 



Where are functions like String and features like RowCount documented? How can I use RowCount in integer compares to do things like =0, =1, >1?



They are not explicitly documented. Please tell us exactly what you want to achieve.



Within a task flow, Conditions have a type setting of String, int32, int64, etc. How can I use RowCount as an integer to avoid possible mistreatment based on an alphabetic ordering? That is, I want to ensure 1 < 2 < 10, and not '1' < '10' < '2'.
Support
11 years ago
If you use Int32 (or Int64) to compare Variables in the Flow they will be compared like numbers.
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
Scroll to Top