I want to build an intermediary service

Sorry to bother everyone in this page,,,
My platform is Windows. For some reasons, I don't want to map S3 service directly to the local area, and I need an intermediate service to control what I can see. I tried to compare the request of rclone between directly connecting S3 and my intermediate service with the content returned by rclone lsjson to build a customized file directory. But I still can't get the desired result.
For example, I return directly under the "/"routing interface.
data = [
{
"Path": "001",
"Name": "001",
"Size": 0,
"MimeType": "inode/directory",
"ModTime": "2024-05-22T06:12:06Z",
"IsDir": True,
"IsBucket": False
}
]

response = {
"Files": data,
"Err": None
}
rclone lsjson still gets an empty list.Direct access to the disk is also empty.
What can I do to make a fake file directory?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.