[Google Drive] shared drive with service accounts: can't delete files

Hello

I was this morning helping setting up rclone nfsmount in a Mac I’m not an owner of, hence why I won’t be able to provide all the required details now (I’m away from that Mac) but hopefully I can get some help/ideas of what could be wrong in the meantime.

What is the problem you are having with rclone?

Creating files and renaming works fine when using rclone nfsmount of a crypted shared Drive remote using a service account. Howerver, if I try to delete a file or a folder, I get an Input/output error (in zsh) or error 66 in Finder’s GUI.

When revising error logs, the error outputted is something like googleApi: 404 Not found file with Id XXXX. In the case of the folders (which logs the exact same message error, referring to the folder as a file), if I acess Drive’s WebUI with that specific ID (https://drive.google.com/drive/folders/XXXX), the folder exists, so I’m not sure why it could not be found and deleted.

At the time I was in front of the Mac I didn’t thought about issuing rclone rm or rclone rmdir commands, sorry.

Run the command 'rclone version' and share the full output of the command.

Tested with rclone 1.73.2 and beta, both installed using the script in downloads page, in a iMac M1 with macOS 26.3.1 Tahoe (latest available for the device). This is the output from the beta:

rclone version

rclone v1.74.0-beta.9545.e987d4f35
- os/version: darwin 26.3.1 (64 bit)
- os/kernel: 25.3.0 (arm64)
- os/type: darwin
- os/arch: arm64 (ARMv8 compatible)
- go/version: go1.26.1
- go/linking: dynamic
- go/tags: cmount

Which cloud storage system are you using? (eg Google Drive)

Google Drive Shared Drives (with a service account appointed as “content manager” of it).

The command you were trying to run (eg rclone copy /tmp remote:tmp)

/usr/local/bin/rclone nfsmount --config /Users/xx/.config/rclone/rclone.conf --vfs-cache-mode full --allow-other --drive-chunk-size=256M --track-renames --fix-case --links --vfs-links --vfs-cache-max-size 1G --volname RemoteTimeMachine Backup: /Users/xx/RemoteTimeMachine

I’m mounting it at boot like this with launchctl, in case it’s relevant:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.rclone.mount</string>
    <key>ProgramArguments</key>
    <array>
        <string>/usr/local/bin/rclone</string>
        <string>nfsmount</string>
	<string>--config</string>
	<string>/Users/xx/.config/rclone/rclone.conf</string>
        <string>--vfs-cache-mode</string>
        <string>full</string>
        <string>--allow-other</string>
	<string>--drive-chunk-size=256M</string>
	<string>--track-renames</string>
	<string>--fix-case</string>
	<string>--links</string>
	<string>--vfs-links</string>
	<string>--vfs-cache-max-size</string>
	<string>1G</string>
	<string>--volname</string>
	<string>RemoteTimeMachine</string>
	<string>Backup:</string>
	<string>/Users/xx/RemoteTimeMachine</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>KeepAlive</key>
    <true/>
    <key>StandardErrorPath</key>
    <string>/var/log/rclone.err</string>
    <key>StandardOutPath</key>
    <string>/var/log/rclone.out</string>
</dict>
</plist>

I tested without the –links and –vfs-links arguments, with no avail

The rclone config contents with secrets removed.

[BackupDrive]
type = drive
scope = drive
use_trash = false
skip_gdocs = true
server_side_across_configs = true
disable_http2 = false
acknowledge_abuse = true
stop_on_upload_limit = true
stop_on_download_limit = true
skip_shortcuts = true
skip_dangling_shortcuts = true
team_drive = REDACTED
root_folder_id = 
service_account_file = $RCLONE_CONFIG_DIR/sa_backup.json

[Backup]
type = crypt
remote = BackupDrive:REDACTED
password = REDACTED
password2 = REDACTED
strict_names = true
filename_encoding = base32768
suffix = none

A log from the command with the -vv flag

I didn’t ran it with the -vv flag, but as mentioned in the description, the source of the error (as seen in /var/log/rclone.err) is a 404 error from the API.

fwiw, no point in testing complex nfsmount, until simple command work


need to post a debug log.
and for a deeper look at the api calls, --dump=headers

@asdffdsa Hello, thank you very much for replying

Edited my original message with rclone version from the beta. Here’s the log of rclone rmdirwith headers, as requested.

rclone rmdir -vvvv --dump=headers Backup:test

2026/03/24 10:46:58 NOTICE: Automatically setting -vv as --dump is enabled
2026/03/24 10:46:58 DEBUG : rclone: Version "v1.74.0-beta.9545.e987d4f35" starting with parameters ["rclone" "rmdir" "-vvvv" "--dump=headers" "Backup:test"]
2026/03/24 10:46:58 DEBUG : Creating backend with remote "Backup:test"
2026/03/24 10:46:58 DEBUG : Using config file from "/Users/REDACTED/.config/rclone/rclone.conf"
2026/03/24 10:46:58 DEBUG : Creating backend with remote "BackupDrive:REDACTED_PARENT_DIR/REDACTED_CRYPT_DIR"
2026/03/24 10:46:58 DEBUG : You have specified to dump information. Please be noted that the Accept-Encoding as shown may not be correct in the request and the response may not show Content-Encoding if the go standard libraries auto gzip encoding was in effect. In this case the body of the request will be gunzipped before showing it.
2026/03/24 10:46:58 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:46:58 DEBUG : HTTP REQUEST (req 0x57d88ba69180)
2026/03/24 10:46:58 DEBUG : POST /token HTTP/1.1
Host: oauth2.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Content-Length: 785
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip

2026/03/24 10:46:58 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:47:58 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:47:58 DEBUG : HTTP RESPONSE (req 0x57d88ba69180)
2026/03/24 10:47:58 DEBUG : Error: dial tcp 108.177.15.95:443: i/o timeout
2026/03/24 10:47:58 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:47:58 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:47:58 DEBUG : HTTP REQUEST (req 0x57d88b74d2c0)
2026/03/24 10:47:58 DEBUG : POST /token HTTP/1.1
Host: oauth2.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Content-Length: 785
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip

2026/03/24 10:47:58 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:47:58 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:47:58 DEBUG : HTTP RESPONSE (req 0x57d88b74d2c0)
2026/03/24 10:47:58 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:47:58 GMT
Server: scaffolding on HTTPServer2
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:47:58 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:47:58 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:47:58 DEBUG : HTTP REQUEST (req 0x57d88b840280)
2026/03/24 10:47:58 DEBUG : GET /drive/v3/files?alt=json&corpora=drive&driveId=REDACTED_DRIVE_ID&fields=files%28id%2Cname%2Csize%2Cmd5Checksum%2Csha1Checksum%2Csha256Checksum%2Ctrashed%2CexplicitlyTrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink%2CshortcutDetails%2CexportLinks%2CresourceKey%29%2CnextPageToken%2CincompleteSearch&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=trashed%3Dfalse+and+%28%27REDACTED_DRIVE_ID%27+in+parents%29+and+%28name%3D%27REDACTED_PARENT_DIR%27%29+and+%28mimeType%3D%27application%2Fvnd.google-apps.folder%27+or+mimeType%3D%27application%2Fvnd.google-apps.shortcut%27%29&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:47:58 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:47:59 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:47:59 DEBUG : HTTP RESPONSE (req 0x57d88b840280)
2026/03/24 10:47:59 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:47:59 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Pragma: no-cache
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:47:59 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:47:59 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:47:59 DEBUG : HTTP REQUEST (req 0x57d88bad8780)
2026/03/24 10:47:59 DEBUG : GET /drive/v3/files?alt=json&corpora=drive&driveId=REDACTED_DRIVE_ID&fields=files%28id%2Cname%2Csize%2Cmd5Checksum%2Csha1Checksum%2Csha256Checksum%2Ctrashed%2CexplicitlyTrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink%2CshortcutDetails%2CexportLinks%2CresourceKey%29%2CnextPageToken%2CincompleteSearch&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=trashed%3Dfalse+and+%28%271U5snlUcgGkxXJ4to35P098NFxeN01Bb1%27+in+parents%29+and+%28name%3D%27REDACTED_CRYPT_DIR_URLENCODED%27%29&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:47:59 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:00 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:00 DEBUG : HTTP RESPONSE (req 0x57d88bad8780)
2026/03/24 10:48:00 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:00 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Pragma: no-cache
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:00 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:00 INFO  : Encrypted drive 'Backup:test': Removing directory
2026/03/24 10:48:00 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:00 DEBUG : HTTP REQUEST (req 0x57d88b8412c0)
2026/03/24 10:48:00 DEBUG : GET /drive/v3/files?alt=json&corpora=drive&driveId=REDACTED_DRIVE_ID&fields=files%28id%2Cname%2Csize%2Cmd5Checksum%2Csha1Checksum%2Csha256Checksum%2Ctrashed%2CexplicitlyTrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink%2CshortcutDetails%2CexportLinks%2CresourceKey%29%2CnextPageToken%2CincompleteSearch&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=trashed%3Dfalse+and+%28%27REDACTED_DRIVE_ID%27+in+parents%29+and+%28name%3D%27REDACTED_PARENT_DIR%27%29+and+%28mimeType%3D%27application%2Fvnd.google-apps.folder%27+or+mimeType%3D%27application%2Fvnd.google-apps.shortcut%27%29&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:00 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:01 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:01 DEBUG : HTTP RESPONSE (req 0x57d88b8412c0)
2026/03/24 10:48:01 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:01 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Pragma: no-cache
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:01 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:01 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:01 DEBUG : HTTP REQUEST (req 0x57d88b841cc0)
2026/03/24 10:48:01 DEBUG : GET /drive/v3/files?alt=json&corpora=drive&driveId=REDACTED_DRIVE_ID&fields=files%28id%2Cname%2Csize%2Cmd5Checksum%2Csha1Checksum%2Csha256Checksum%2Ctrashed%2CexplicitlyTrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink%2CshortcutDetails%2CexportLinks%2CresourceKey%29%2CnextPageToken%2CincompleteSearch&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=trashed%3Dfalse+and+%28%271U5snlUcgGkxXJ4to35P098NFxeN01Bb1%27+in+parents%29+and+%28name%3D%27REDACTED_CRYPT_DIR_URLENCODED%27%29+and+%28mimeType%3D%27application%2Fvnd.google-apps.folder%27+or+mimeType%3D%27application%2Fvnd.google-apps.shortcut%27%29&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:01 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:02 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:02 DEBUG : HTTP RESPONSE (req 0x57d88b841cc0)
2026/03/24 10:48:02 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:02 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Pragma: no-cache
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:02 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:02 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:02 DEBUG : HTTP REQUEST (req 0x57d88b381540)
2026/03/24 10:48:02 DEBUG : GET /drive/v3/files?alt=json&corpora=drive&driveId=REDACTED_DRIVE_ID&fields=files%28id%2Cname%2Csize%2Cmd5Checksum%2Csha1Checksum%2Csha256Checksum%2Ctrashed%2CexplicitlyTrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink%2CshortcutDetails%2CexportLinks%2CresourceKey%29%2CnextPageToken%2CincompleteSearch&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=%28%271JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X%27+in+parents%29&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:02 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:03 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:03 DEBUG : HTTP RESPONSE (req 0x57d88b381540)
2026/03/24 10:48:03 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:02 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Pragma: no-cache
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:03 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:03 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:03 DEBUG : HTTP REQUEST (req 0x57d88bb68780)
2026/03/24 10:48:03 DEBUG : DELETE /drive/v3/files/1JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X?alt=json&fields=&prettyPrint=false&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:03 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:03 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:03 DEBUG : HTTP RESPONSE (req 0x57d88bb68780)
2026/03/24 10:48:03 DEBUG : HTTP/2.0 404 Not Found
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: private, max-age=0
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:03 GMT
Expires: Tue, 24 Mar 2026 09:48:03 GMT
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:03 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:03 ERROR : Attempt 1/3 failed with 1 errors and: googleapi: Error 404: File not found: 1JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X., notFound
2026/03/24 10:48:03 INFO  : Encrypted drive 'Backup:test': Removing directory
2026/03/24 10:48:03 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:03 DEBUG : HTTP REQUEST (req 0x57d88be9e000)
2026/03/24 10:48:03 DEBUG : GET /drive/v3/files?alt=json&corpora=drive&driveId=REDACTED_DRIVE_ID&fields=files%28id%2Cname%2Csize%2Cmd5Checksum%2Csha1Checksum%2Csha256Checksum%2Ctrashed%2CexplicitlyTrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink%2CshortcutDetails%2CexportLinks%2CresourceKey%29%2CnextPageToken%2CincompleteSearch&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=%28%271JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X%27+in+parents%29&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:03 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:04 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:04 DEBUG : HTTP RESPONSE (req 0x57d88be9e000)
2026/03/24 10:48:04 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:04 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Pragma: no-cache
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:04 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:04 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:04 DEBUG : HTTP REQUEST (req 0x57d88bb69180)
2026/03/24 10:48:04 DEBUG : DELETE /drive/v3/files/1JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X?alt=json&fields=&prettyPrint=false&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:04 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:05 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:05 DEBUG : HTTP RESPONSE (req 0x57d88bb69180)
2026/03/24 10:48:05 DEBUG : HTTP/2.0 404 Not Found
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: private, max-age=0
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:05 GMT
Expires: Tue, 24 Mar 2026 09:48:05 GMT
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:05 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:05 ERROR : Attempt 2/3 failed with 1 errors and: googleapi: Error 404: File not found: 1JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X., notFound
2026/03/24 10:48:05 INFO  : Encrypted drive 'Backup:test': Removing directory
2026/03/24 10:48:05 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:05 DEBUG : HTTP REQUEST (req 0x57d88bad9400)
2026/03/24 10:48:05 DEBUG : GET /drive/v3/files?alt=json&corpora=drive&driveId=REDACTED_DRIVE_ID&fields=files%28id%2Cname%2Csize%2Cmd5Checksum%2Csha1Checksum%2Csha256Checksum%2Ctrashed%2CexplicitlyTrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink%2CshortcutDetails%2CexportLinks%2CresourceKey%29%2CnextPageToken%2CincompleteSearch&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=%28%271JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X%27+in+parents%29&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:05 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:06 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:06 DEBUG : HTTP RESPONSE (req 0x57d88bad9400)
2026/03/24 10:48:06 DEBUG : HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:05 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Pragma: no-cache
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:06 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:06 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:06 DEBUG : HTTP REQUEST (req 0x57d88bad9b80)
2026/03/24 10:48:06 DEBUG : DELETE /drive/v3/files/1JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X?alt=json&fields=&prettyPrint=false&supportsAllDrives=true HTTP/1.1
Host: www.googleapis.com
User-Agent: rclone/v1.74.0-beta.9545.e987d4f35
Authorization: XXXX
X-Goog-Api-Client: gl-go/1.26.1 gdcl/0.267.0
Accept-Encoding: gzip

2026/03/24 10:48:06 DEBUG : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2026/03/24 10:48:06 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:06 DEBUG : HTTP RESPONSE (req 0x57d88bad9b80)
2026/03/24 10:48:06 DEBUG : HTTP/2.0 404 Not Found
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Cache-Control: private, max-age=0
Content-Type: application/json; charset=UTF-8
Date: Tue, 24 Mar 2026 09:48:06 GMT
Expires: Tue, 24 Mar 2026 09:48:06 GMT
Server: ESF
Vary: Origin, X-Origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

2026/03/24 10:48:06 DEBUG : <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2026/03/24 10:48:06 ERROR : Attempt 3/3 failed with 1 errors and: googleapi: Error 404: File not found: 1JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X., notFound
2026/03/24 10:48:06 DEBUG : 7 go routines active
2026/03/24 10:48:06 NOTICE: Failed to rmdir: googleapi: Error 404: File not found: 1JIY0SAuN7q8UFeaZajhc0Ws0QYiFGf9X., notFound

Any idea what else I could try?

Still didn’t found anything that could be causing this issue :frowning:

Bump!