只设置文件夹权限为755 文件权限为644find -type d -exec chmod 755 {} ; find -type f -exec chmod 644 {} ; 或者 find -type d|xargs chmod 755 find -type f|xargs chmod 644