JackSlateur / curlftpfs

A FTP filesystem based on cURL and FUSE
GNU General Public License v2.0
16 stars 13 forks source link

After mount, read filename with spaces, permission denied occurred #3

Open thomaslee0051 opened 2 years ago

thomaslee0051 commented 2 years ago

Hi,this is my operation as follows:

curlftpfs -o intr,async_read,default_permissions,allow_other,codepage=utf8 ftp://123:123@10.1.1.1:21  /data/ftp/my_dir
ls -ltr abc\ .mp4 
-rw-r--r--. 1 root root 12643479 Sep  8  2022 abc .mp4
sh-5.1#     
sh-5.1# less abc\ .mp4 
less: can't open 'abc .mp4': Permission denied
sh-5.1# 
sh-5.1# less abc\\x%20.mp4  
less: can't open 'abc\x%20.mp4': No such file or directory
sh-5.1# less abc%20.mp4    
less: can't open 'abc%20.mp4': No such file or directory

Does curlftpfs support file names with spaces? Is there any solution? Thanks.

gustavopals commented 1 year ago

same here

lesca commented 5 months ago

same to me any ideas after 2yrs?

gustavopals commented 4 months ago

i changed to 'sudo mount -t cifs', it's working with spaces, maybe this can help someone