WebDavNTML icon

WebDavNTML

Interact with WebDav with NTML auth

Actions6

Overview

This node enables interaction with a WebDAV server using NTLM authentication. It supports operations on both files and folders stored on the WebDAV server. Specifically, for the "Folder" resource and the "Create" operation, it allows users to create new folders at specified paths within the WebDAV storage.

Common scenarios where this node is beneficial include automating file management tasks on WebDAV servers, such as organizing documents by creating folder structures dynamically or integrating WebDAV storage into broader workflows that require folder creation.

Practical example: Automatically creating project-specific folders in a shared WebDAV drive whenever a new project is initiated in another system.

Properties

Name Meaning
Path The path to the folder in the WebDAV storage where the new folder should be created. This is a required string input.

Output

The node outputs an array of JSON objects representing the results of the executed operations. For the "Folder Create" operation, each output item typically contains metadata about the newly created folder, such as its path or confirmation of successful creation.

If multiple folders are created in one execution, the output will contain multiple such JSON objects.

No binary data output is indicated for this operation.

Dependencies

  • Requires a WebDAV server accessible via NTLM authentication.
  • Needs an API key credential configured in n8n for authenticating with the WebDAV server.
  • Uses internal helper functions to handle WebDAV client creation and folder operations.

Troubleshooting

  • Unsupported Resource Error: If an unsupported resource is specified, the node throws an error indicating the resource is not supported. Ensure the resource parameter is set correctly (e.g., "folder").
  • Authentication Failures: Incorrect or missing credentials for the WebDAV server will cause authentication errors. Verify that the API key credential is properly configured.
  • Invalid Path: Providing an invalid or inaccessible path may result in errors from the WebDAV server. Double-check the folder path syntax and permissions.
  • Network Issues: Connectivity problems with the WebDAV server can cause timeouts or failures. Confirm network access and server availability.

Links and References

Discussion