MultiFileSource(String[]) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of MultiFileSource.
In case of usage from Maml, the paths would be wildcard concatenated in the first string of paths
.
public MultiFileSource (params string[] paths);
new Microsoft.ML.Data.MultiFileSource : string[] -> Microsoft.ML.Data.MultiFileSource
Public Sub New (ParamArray paths As String())
Parameters
- paths
- String[]
The paths of the files to load.
Remarks
The provided paths
can utilize wildcards to load all source files. For example: paths = "Data/*" includes all files in directory Data paths = "DataFolder/.../*" includes all files in all subdirectories inside directory Data. paths = "Data1/*", "Data2/*" includes all files in directories Data1 and Data2