The ‘Create a Folder’ feature allows for a new folder to be made, better organizing the HydroShare resource. This feature is run by the HydroShare API Python library.
To try this on your own, you can use the code snippet below that is used in this demonstration.
from hs_restclient import HydroShare, HydroShareAuthBasic
auth = HydroShareAuthBasic(username='myusername', password='mypassword')
hs = HydroShare(auth=auth)
folder_to_create = "folder_1/folder_2"
response_json = hs.createResourceFolder('ID OF RESOURCE GOES HERE', pathname=folder_to_create)