Is it possible to change the path of taxonomy manager json file ? I am just aksing this question out of my curiosity
Yes, in UiPath, you can change the path of the Taxonomy Manager JSON file by modifying the configuration settings. Typically, you’ll need to update the path in the TaxonomyManagerSettings.json file, which is located in the UiPath installation directory.
Cheers…!
No you cannot edit the location…it by default needs to be present in the same folder
Cheers
You can store the taxonomy file anywhere you want, then in your automation use Read Text File to get its contents into a variable, then convert it into a taxonomy with…
DocumentTaxonomy.Deserialize(fileString)
The
DocumentTaxonomy.Deserialize(jsonString)
static extension returns aDocumentTaxonomy
object, hydrated with the JSON encoded data passed as a parameter.