it is not too difficult in SQL:
- give the folder a unique name (such as "the_old_process_folder")
- use this SQL script (in openLCA, tools, developer tools, sql):
update tbl_processes set name = name || '-old' where f_category = (select id from tbl_categories where name = 'the_old_process_folder')
You need to close and reopen the database to see an effect in the navigation tree.