Actions100
- Project Actions
- Project Accept Project Invite
- Project Create Project Invite
- Project List Invites For Project
- Project Create Project
- Project Decline Project Invite
- Project Delete Project Avatar
- Project Request Project Avatar Upload
- Project Delete Project Invite
- Project Get Project Invite
- Project Delete Project Membership
- Project Get Project Membership
- Project Update Project Membership
- Project Delete Project
- Project Get Project
- Project Delete Server Avatar
- Project Request Server Avatar Upload
- Project Get Project Token Invite
- Project Get Self Membership For Project
- Project Get Server
- Project List Memberships For Project
- Project List Project Invites
- Project List Project Memberships
- Project List Projects
- Project List Servers
- Project Resend Project Invite Mail
- Project Update Project Description
- Project Update Server Description
- Storagespace Get Project Statistics
- Storagespace Get Server Statistics
- Storagespace Replace Project Notification Threshold
- Storagespace Replace Server Notification Threshold
- Backup Actions
- Backup Create Project Backup Export
- Backup Delete Project Backup Export
- Backup Create Project Backup Schedule
- Backup List Project Backup Schedules
- Backup Create Project Backup
- Backup List Project Backups
- Backup Delete Project Backup Schedule
- Backup Get Project Backup Schedule
- Backup Update Project Backup Schedule
- Backup Delete Project Backup
- Backup Get Project Backup
- Backup Update Project Backup Description
- SSH SFTP User Actions
- Cronjob Actions
- App Actions
- App Execute Action
- App Get App
- App Get Appinstallation
- App Patch Appinstallation
- App Uninstall Appinstallation
- App Get Appversion
- App Get Installed Systemsoftware For Appinstallation
- App Get Missing Dependencies For Appinstallation
- App Get Systemsoftware
- App Get Systemsoftwareversion
- App Link Database
- App List Appinstallations For User
- App List Appinstallations
- App Request Appinstallation
- App List Apps
- App List Appversions
- App List Systemsoftwares
- App List Systemsoftwareversions
- App List Update Candidates For Appversion
- App Replace Database
- App Request Appinstallation Copy
- App Retrieve Status
- App Unlink Database
- App Set Database Users
- Project File System Actions
- Contract Actions
Overview
The "Project File System List Files" operation allows users to list or retrieve files within a specified project by interacting with the project's file system. This node is useful for scenarios where you need to programmatically access, monitor, or process files stored in a project environment, such as fetching log files, configuration files, or any other project-related documents.
Practical examples include:
- Automatically retrieving and processing log files from a project for error analysis.
- Listing files in a project directory to trigger workflows based on file presence or changes.
- Accessing specific files to extract data or metadata for further automation.
Properties
Name | Meaning |
---|---|
Project Id | The unique identifier of the project whose file system you want to access. |
File | The name or path of the file to retrieve within the project file system (e.g., /home/example.log ). |
Output
The node outputs JSON data representing the file(s) retrieved or listed from the project file system. The exact structure depends on the API response but typically includes file metadata such as name, size, type, and content if applicable.
If the node supports binary data output (e.g., file contents), it will provide the file data in binary form suitable for further processing or saving.
Dependencies
- Requires an API key credential to authenticate with the mittwald mStudio API.
- The node communicates with the mittwald mStudio API endpoint at
https://api.mittwald.de
. - Proper configuration of the API authentication credentials in n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing Project Id may result in errors or empty responses.
- Incorrect file path/name can cause the node to fail to find the file.
- Authentication failures due to invalid or expired API keys.
- Network connectivity issues preventing access to the mittwald API.
Error messages and resolutions:
- "Unauthorized" or "Authentication failed": Check that the API key credential is correctly configured and valid.
- "File not found": Verify the file path and name are correct and that the file exists in the specified project.
- "Project not found": Confirm the Project Id is accurate and the project exists in the mittwald system.
- Timeouts or network errors: Ensure stable internet connection and that the API endpoint is reachable.
Links and References
- mittwald mStudio API Documentation (for detailed API usage and endpoints)
- n8n documentation on Creating Custom Nodes