Difference between revisions of "Activity:ReadDirectoryContent (Activity)"
m (moved ReadDirectoryContent (Activity) to ReadDirectoryContent (Activity): Text replacement - "(.*)\(Activity\)" to "Activity:$1(Activity)") |
|||
Line 36: | Line 36: | ||
==See also== | ==See also== | ||
* [[Workflow Designer]] | * [[Workflow Designer]] | ||
− | * [[DeleteDirectoryContent_(Activity)]] | + | * [[Activity:DeleteDirectoryContent_(Activity)]] |
[[Category:File primitives]] | [[Category:File primitives]] | ||
[[Category:Activities]] | [[Category:Activities]] |
Revision as of 11:26, 23 February 2015
Read Directory Content | |
---|---|
Name | ReadDirectoryContent |
Purpose | Read directory content |
Category | File Primitives |
Returns | Number of files found |
Version | 2.3+ |
The ReadDirectoryContent returns a file list from a directory matching a search pattern.
Arguments
Argument | Type | Direction | Purpose |
---|---|---|---|
CreationTime | DateTime | In | Minimum creation time |
Directory | String | In | Directory full path |
FileNames | List<String> | Out | List of file full paths |
Filter | String | In | Search pattern for files (extension) |
LastWriteTime | DateTime | In | Minimum last write time |
Result | Integer | Out | Number of found files |
Usage
This activity returns a list of file full paths matching the search pattern Filter and timestamp criteria CreationTime and LastWriteTime in the given directory.
In Result the number of actual found files is returned.