lavv17 / lftp

sophisticated command line file transfer program (ftp, http, sftp, fish, torrent)
http://lftp.yar.ru
GNU General Public License v3.0
1.11k stars 162 forks source link

Problem download file with excluded param in a mirror mode #616

Open xaviernuma opened 3 years ago

xaviernuma commented 3 years ago

Hi,

I have 2 problem, the first :

in

lftp sftp://xxxxx@xxxxx.net -p 22 -e set ftp:charset iso8859-1 ; mirror -e --exclude-glob htdocs/une/ --exclude-glob htdocs/pub_accueil/ --delete-excluded --no-perms -vvv ; quit

lftp download all content of htdocs/pub_accueil/ first, and then rm htdocs/pub_accueil/

why this ? if a directory it's excluded htdocs/pub_accueil/ it should not scan and download in the htdocs/pub_accueil/ ?

My second problem is with --exclude-glob and --delete-excluded

lftp sftp://xxxxx@xxxxx.net -p 22 -e set ftp:charset iso8859-1 ; mirror -e --exclude-glob htdocs/une/ --exclude-glob htdocs/pub_accueil/ --delete-excluded --no-perms -vvv ; quit

How to empty the directory htdocs/pub_accueil/ without deleting it?

Thank you for your software !

Best regards

xaviernuma