STOP and READUSE THIS TEMPLATENO EXCEPTIONS - By not using this, you waste your time, our time and really hate puppies. Please remove these two lines and that will confirm you have read them.
What is the problem you are having with rclone?
Not able to mount a S3 bucket to a subdirectory under C Drive in a Windows Server EC2 instance. Version of WinFsp = 2.0.23075
Run the command 'rclone version' and share the full output of the command.
PS D:\Code\MountS3_PS_BAT> rclone version
rclone v1.66.0
os/version: Microsoft Windows Server 2022 Datacenter 21H2 (64 bit)
os/kernel: 10.0.20348.2461 (x86_64)
os/type: windows
os/arch: amd64
go/version: go1.22.1
go/linking: static
go/tags: cmount
PS D:\Code\MountS3_PS_BAT>
Which cloud storage system are you using? (eg Google Drive)
AWS
The command you were trying to run (eg rclone copy /tmp remote:tmp)
rclone mount aws_s3:/testing-bucket-name C:\tmp\mount
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
perhaps the last run of rclone did not exit cleanly?
perhaps another instance of rclone running in the background and has locked the folder?
can check task manager or run tasklist /FI "imagename eq rclone.exe"
dir b:\rclone\mount
Volume in drive B is EN10BDRIVE
Volume Serial Number is D409-0B1D
Directory of b:\rclone\mount
07/13/2024 03:28 PM <DIR> .
06/03/2024 01:36 PM <DIR> ..
07/13/2024 03:28 PM <DIR> real_dir
07/12/2024 11:47 AM <JUNCTION> ubuntu01_user01_sftp [\Device\Volume{25fe95e8-3efd-11ef-90df-482ae32ef6d1}\]
With the above command the bucket will be mounted in X: drive, where X drive is not any logical drive.
But my use case is, if I run the below command; all the buckets which are in the variable/list "%%A" will be mounted under "X:/Buckets" where X is not any logicaldrive.
Is there any solution available, if not can this be taken as a feature request?
so basically,
you want a single instance of rclone.exe mount command to accept a list of bucket names.
and then have rclone create each mountpoint in a loop.
if you want to mount to a folder, the parent path needs to be logical/real
the drive letter needs to be logical/real.
i do not want to use c: or d: as part of the mountpoint path.
so what i have done, is create a very small parition, 1GiB in size, labeled as b:
in my example from up above is b:\rclone\mount is the root for all my mounts
for example, rclone mount remote:bucket b:\rclone\mount\bucket
Yeah even I did the same thing, wrote all the buckets name in a config file(my_buck.config). From the bat file reading the conf file and iterating through the buckets in a for loop and mounting them one by one.