-
-
Notifications
You must be signed in to change notification settings - Fork 988
Description
How to use GitHub
- Please use the 👍 reaction to show that you are affected by the same issue.
- Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
- Subscribe to receive notifications on status change and new comments.
Steps to reproduce
- In the Nextcloud iOS app, select the Files tab
- Tap the ➕ button
- Tap "Create folder"
- Enter a folder name that has a slash in it (e.g.
a/b) - Tap "Save"
Expected behaviour
The app should either:
- Successfully create a folder with a slash in the folder name (by encoding the slash in the WebDAV request and in the storage backend), or
- Prevent creating a folder with characters that aren't allowed, and show a helpful message similar to Putting a slashes (
/) in filename when scanning, does not save the file nor shows an error #2880 (comment)
Actual behaviour
The app repeatedly attempts to create the folder but fails and shows a red "Error: Parent node does not exist, code: 409" banner, and the Transfers view shows the folder with status "Waiting to create the folder".
| Folder view | Transfers view |
|---|---|
![]() |
![]() |
Logs
- The
MKCOL /remote.php/dav/files/…/a/brequest fails withSabre\DAV\Exception\Conflict: Parent node does not exist
Reasoning or why should it be changed/implemented?
As an experienced Unix user, I know that folder names may not contain forward slashes. But people without that specific domain knowledge should be able to use the Nextcloud iOS app, without running into cryptic error messages.
I favor Expected Behavior Option 1 above because, to someone who isn't an experienced Unix user, the prohibition on forward slashes seems arbitrary and unnecessary. Forward slashes can be useful in folder names, such as Results of A/B Test or Trip to US/Mexico border at Nogales.
Environment data
iOS version: iOS 26.1
Nextcloud iOS app version: 7.2.2.4
Server operating system: Debian 13
Web server: Apache HTTPD 2.4.65
Database: MariaDB 11.8.2
PHP version: 8.4.11
Nextcloud version: 32.0.2

