【问题标题】:Server Apache - Change only file but not folder (and vice versa)服务器 Apache - 仅更改文件而不更改文件夹(反之亦然)
【发布时间】:2013-10-09 15:06:57
【问题描述】:

通过这个命令,我可以将“img”中的所有文件和文件夹设置为 0775:

chmod 775 -R /var/www/site.com/img/  

但是我想只更改文件夹 img 中的文件吗?我能怎么做? 只更改文件夹?

谢谢

【问题讨论】:

标签: apache chmod


【解决方案1】:

好的,

递归更改目录或文件权限

find /root/path -type d -print0 | xargs -0 chmod 755 
find /root/path -type f -print0 | xargs -0 chmod 644

【讨论】:

  • 谢谢;在文件夹“img”中有更多其他文件夹;我只想更改文件夹(文件设置为 644,文件夹设置为 755)你能帮我吗?
猜你喜欢
  • 1970-01-01
  • 2011-12-16
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多