Create a folder in a HydroShare resource

The 'Create a folder' feature is as the name suggests to create a new folder in a resource of your HydroShare account which would contain all the files you intend to upload. This feature is brought about by the HydroShare api Python library.

The way you could go about performing this function is by following the instructions below:

Step 1: Sign into HydroShare using your credentials

In the boxes below you enter your HydroShare username and its password. If you have to make an HydroShare account, click here.

Step 2: Enter in the Resource ID and choose the file you wish to upload

The resource Id is a unique identifier for every resource on Hydroshare. You can findit by browsing to your HydroShare resource copying the ID from the URL. Like for example, this is an example hyperlink https://www.hydroshare.org/resource/08c6e88adaa647cd9bb28e5d619178e0/ from which the 32 letter combination at the end is called the resource id. And so the resource id from the example hyperlink is 08c6e88adaa647cd9bb28e5d619178e0

Resource ID

Learn more:

To try this on your own, you can use the code snippet below that is used in this demonstration.

    
        auth = HydroShareAuthBasic(username= username, password= password)
        hs = HydroShare(auth=auth)
        folder_to_create = foldername
        response_json = hs.createResourceFolder(resourcein, pathname=folder_to_create)
        messages.success(request, "Folder created successfully")
    if has_errors:    
        messages.error(request, "Please fix errors.")