Community 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
2013-04-30T10:53:32Z
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
2013-04-30T12:48:19Z
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
2013-04-30T12:50:30Z
I need to also know the number of files found, similar to Result.NoDownloadedFiles but need it for task List Files.
Support
2013-04-30T12:53:45Z
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
2013-04-30T13:10:02Z
grendel70
2013-11-15T20:35:15Z
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
2013-11-18T08:41:35Z
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
2013-11-20T18:54:56Z
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
2013-11-21T07:58:53Z
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