dokan-dev / dokany

User mode file system library for windows with FUSE Wrapper
http://dokan-dev.github.io
5.2k stars 661 forks source link

Fuse Mirror - Invalid Argument #1127

Closed FatSkat closed 1 year ago

FatSkat commented 1 year ago

Environment

Check List

Description

I am trying to mirror a FUSE based drive (created by rclone) but it seems like I am not using the right commands. I have not found any examples with FUSE Mirroring but I've tried what works for mirror: mirror.exe /r FuseDrive: /l NewDriveLetter I get invalid argument 'FuseDrive:"

Any help would be appreciated.

Logs

Liryna commented 1 year ago

Hi @FatSkat ,

The fuse_mirror use the standard fuse arguments https://github.com/dokan-dev/dokany/blob/master/dokan_fuse/src/fuse_helpers.c#L43-L82

FatSkat commented 1 year ago

Thank you for your reply! I still can't figure it out but I'll take another look tomorrow

Liryna commented 1 year ago

What are you trying to do and why use the fuse mirror and not the dokan mirror ?

FatSkat commented 1 year ago

I am trying to mirror a FUSE-rclone file system to show as NTFS. I've basically mounted a Google Drive through rclone (which is using FUSE https://rclone.org/commands/rclone_mount/ ) and I am now trying to mirror that as a local NTFS drive. It doesn't seem to work with dokan mirror so I thought maybe fuse mirror would do the trick. Thank you!