Skip to content

FromFileSystem Configurations Table View

Property Path Type Required Default Description
GeneratorConfiguration object or string Retrieves data from a configured path to a directory in the file system. DataSources: Not used. SessionData: Not used.
GeneratorConfiguration.DataArrangeOrder one of [AsciiAsc / AsciiDesc / FirstNumericalAsc / FirstNumericalDesc / Unordered] In which order to arrange the loaded data. Arranges data based of the key identifier of the item. Options: [ AsciiAsc - orders by the ascii value ascending / AsciiDesc - orders by the ascii value descending / FirstNumericalAsc - orders by the first found numerical value in the string ascending /FirstNumericalDesc - orders by the first found numerical value in the string descending /'Unordered' - does not order the data ]
GeneratorConfiguration.Count integer or string or null The number of items to generate out of the given data sources (If count is bigger than available number of items an exception will be thrown), if no value is given generates the number of items in the given data sources
GeneratorConfiguration.DataUuidRegexExpression string .* A regex expression to use for filtering data from the external source by their UUID, only items that match the regex will be taken
GeneratorConfiguration.StorageMetaData one of [FullPath / RelativePath / ItemName / None] The way to store the name of the generated data as key in StorageMetaData. Options:[ FullPath - stores the full path of the item as the key / RelativePath - stores the relative path related to the prefix / ItemName - stores only the name of the item as the key / None - does not store the name of the item
GeneratorConfiguration.FileSystem object or string File system directory configuration
GeneratorConfiguration.FileSystem.Path string The path of the directory containing the relevant files
GeneratorConfiguration.FileSystem.SearchPattern string The search string to match against the names of files in path. This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.