Community Tool - Unofficial Implementation This project is an independent, community-developed open-source software project. It is not provided, supported, endorsed by, sponsored by, or affiliated with FileHold Systems ULC or Keymark.
Trademarks "FileHold" and the FileHold logo are trademarks or registered trademarks of FileHold Systems ULC in the United States, Canada, and/or other countries. All other trademarks cited herein are the property of their respective owners. Use of these names is for descriptive purposes only (nominative fair use) to indicate compatibility.
This server allows you to access your FileHold documents via the WebDAV protocol.
- Browsing: Navigate through cabinets, drawers, folder groups, and folders.
- Downloading: Download documents.
- Adding: Add cabinets, drawers, folder groups, folders and documents.
- Overriding: Override existing documents.
- Structure Modification: Create cabinets, drawers, folder groups, and folders.
- Renaming: Rename cabinets, drawers, folder groups, folders and documents.
- Run directly with uv (recommended):
uvx webdav-server-for-filehold - pip:
pip install webdav-server-for-filehold - uv:
uv pip install webdav-server-for-filehold
To start the server, run:
uvx webdav-server-for-filehold --filehold-url http://localhost/FH/FileHold/ -vWhen connecting via a WebDAV client (like WinSCP), use your FileHold credentials:
- Local User:
sysadm,.\sysadm, orlocal\sysadm - Domain User:
domainName\sysadm
You can configure the server using the following command-line arguments:
| Argument | Environment Variable | Description | Default |
|---|---|---|---|
--host |
WEBDAV_HOST |
Host to bind to | 0.0.0.0 |
--port |
WEBDAV_PORT |
Port to bind to | 8080 |
--filehold-url |
WEBDAV_FILEHOLD_URL |
Base URL for FileHold | http://localhost/FH/FileHold/ |
--default_schema_name |
WEBDAV_DEFAULT_SCHEMA_NAME |
Default schema name to use when creating Cabinets or Folders | None |
--create-category-in-drawer |
WEBDAV_CREATE_CATEGORY_IN_DRAWER |
Create Category instead of Folder when creating directory in Drawer | False |
-v, --verbose |
WEBDAV_VERBOSE |
Enable debug logging for the application | False |
-vv, --very-verbose |
WEBDAV_VERY_VERBOSE |
Enable debug logging for everything (including libraries) | False |
--ssl-cert |
WEBDAV_SSL_CERT |
Path to SSL certificate file (PEM format) | None |
--ssl-key |
WEBDAV_SSL_KEY |
Path to SSL key file (PEM format) | None |
Example:
webdav-server-for-filehold --port 9090 --filehold-url http://filehold.example.com/FH/FileHold/ -v --default_schema_name "Document"Please refer to CONTRIBUTING.md for development and testing instructions.
webdav-server-for-filehold is provided as-is under the MIT license.