UiPath DU path json taxonomy manager

Is it possible to change the path of taxonomy manager json file ? I am just aksing this question out of my curiosity

Hi @Ritaman_Baral

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…!

@Ritaman_Baral

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 a DocumentTaxonomy object, hydrated with the JSON encoded data passed as a parameter.

Deserialize(String)link