Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有来自服务器的 ftp 文件列表,我如何更改其中一个文件的权限?
如果有人能给我指点教程或给我看一个例子,我将不胜感激。我已经弄清楚如何更改文件中的权限,但不知道如何使更改在服务器上永久生效。
有什么建议么?
可以通过在文件或目录所在的目录中使用它来设置文件的权限:
ftpClient.sendSiteCommand("chmod " + "755" + " example.html");
注意:为什么没有人知道 FTPFile 中的 setPermission() 是如何工作的,这对我来说是个谜。因为这似乎是一种更好的方法,而不是使用命令行在 apache commons net 库中设置 ftpFile 的权限!