如何更改所有子目录的文件权限(CHMOD)

发布于 2024-12-08 08:46:03 字数 163 浏览 2 评论 0原文

我有一个目录,其中有多个目录,每个目录包含多个图像文件。

我想将所有子目录其中的图像文件的文件权限更改为755。

我正在使用 WinSCP 连接到服务器。那么如何一次性更改文件权限,因为文件很多,无法一一更改。

I've a directory, inside which I've multiple directories each containing several image files.

I want to change the file permissions to 755 for all the sub-directories and the image files inside them.

I'm using WinSCP to connect to the server. So how do I change the file permissions in one go as I can't keep changing one by one since there are lots of files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

夏天碎花小短裙 2024-12-15 08:46:03

如果您有服务器的 shell 访问权限,您可以执行

chmod -R 755 {DIR}

-R 表示递归。

编辑:如果您只能通过 WinSCP 进行访问,您应该能够选择所需的文件/目录,并且 递归地更改权限

If you have shell access to the server you can execute

chmod -R 755 {DIR}

The -R means recursive.

Edit: If you only have access via WinSCP you should be able to select the files/directories you want and change the permissions recursively

扛刀软妹 2024-12-15 08:46:03

您可以通过 FileZilla 完成此操作。登录 FileZilla 并右键单击该文件夹,然后单击“更改权限”,您将在下面找到更改子目录和文件权限的选项。

You can do it through FileZilla. Log through FileZilla and right click on the folder and click on change permissions and below you'll find option to change permissions on sub directories and files.

薄情伤 2024-12-15 08:46:03

如果您具有对服务器的 shell 访问权限,则可以通过 shell 进行chmod

您可以使用 -R 进行递归:

chmod 755 -R ...

我也喜欢打印文件,因此如果您想要的话,只需附加一个 -v 即可:

chmod 755 -Rv ...

If you have shell access to your server, you can chmod via the shell.

You recurse with -R:

chmod 755 -R ...

I also like to print the files, so just append a -v if you want to:

chmod 755 -Rv ...
亽野灬性zι浪 2024-12-15 08:46:03

我以这种方式解决:

使用curlftpfs将ftpdir挂载到本地(curlftpfs教程) :

 curlftpfs -v IP /mnt/ftp/ -o user=<user>:<pass>

chmod 755 /mnt/ftp/ -R

I've resolve in this way:

mount ftpdir to local with curlftpfs (curlftpfs tutorial):

 curlftpfs -v IP /mnt/ftp/ -o user=<user>:<pass>

and

chmod 755 /mnt/ftp/ -R
怀念你的温柔 2024-12-15 08:46:03
chmod -R 704 yourDirectoryName

所有者可以:执行读写,
组: 没有前提条件,
老师:读预设

chmod -R 704 yourDirectoryName

Owner Can: Execute Read Write,
Group: No premissions,
Teacher: Read premissions

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文