vote up 0 vote down star

which ftp client or which syntax allows easy chmod of subdirectories?

flag

4 Answers

vote up 1 vote down

I'm pretty sure Filezilla does it

link|flag
vote up 1 vote down

ncftp will support the chmod command if the FTP Server supports it.

link|flag
vote up 0 vote down

As the answer from @Ken G suggests, this is more likely to be a question of "what does the FTP server support".

I tried ncftp (running under Cygwin on Win XP) against Sun FTP running on Solaris 10 (where chmod -R is supported by the o/s version of chmod). I got an error back:

ncftp /work1/jleffler/tmp > chmod -R g+x *
chmod g+x: server said: 'SITE CHMOD -R g+x': command not understood.
chmod *: server said: 'SITE CHMOD -R xx.pl': command not understood.
ncftp /work1/jleffler/tmp >

My suspicion is that few if any systems make it easy. It would be worth checking out whether the NCFTP server helps you.

link|flag
vote up 0 vote down

To chmod all subdirs from where you are (recursive):

chmod -R *
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.