I have a table that contains file paths of lots of features that I need to migrate. Is there a way to read the file paths from the table to load all of the needed features? Any thoughts? Suggestions?
Thanks in advance. Have a great day
I have a table that contains file paths of lots of features that I need to migrate. Is there a way to read the file paths from the table to load all of the needed features? Any thoughts? Suggestions?
Thanks in advance. Have a great day
Best answer by takashi
If you read multiple file paths from a table, you can create a concatenated paths string (delimiter is white space), and pass it to the source dataset parameter of the main workspace through the WorkspaceRunner.
Each path and entire string should be quoted like this.
""<path1>" "<path2>" "<path3>" ... "<pathN>""
If a path string doesn't contain spaces, it's not essential to quote it. But I think it's better to quote always individual paths to avoid unexpected conditions.
Takashi
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.