0

For context I'm using rclone to copy a folder into a mnt point.

This works until I try to remount, I get the following error

mkdir: cannot create directory 's3': File exists

However when I browse to the folder it is empty, and when i try the raw command:

mkdir s3

I get the same error

ls returns nothing

dir returns nothing

ls -a returns:

. ..

Mr Giggles
  • 111
  • 1
  • 3

1 Answers1

1

The issue I had was the mount was still present, but the folder was not, to fix this I had to run

umount {thePath}

which then allowed the folder to be recreated

Mr Giggles
  • 111
  • 1
  • 3