在python中通过ftp更改权限

时间:2014-09-11 16:52:21

标签: python permissions ftplib

我正在使用带有ftplib的python将图像上传到位于/ var / www中的raspberryPi上的文件夹。 一切正常,但上传的文件具有600权限,我需要644

这是最好的方法吗? 我正在寻找类似的东西:

def ftp_store_avatar(name, image):
    ftp = ftp_connect()
    ftp.cwd("/img")
    file = open(image, 'rb')
    ftp.storbinary('STOR ' + name + ".jpg", file)     # send the file

    [command to set permissions to file]

    file.close()
    ftp.close()

2 个答案:

答案 0 :(得分:7)

您需要使用sendcmd。

以下是通过ftplib更改权限的示例程序:

#!/usr/bin/env python

import sys
import ftplib

filename = sys.argv[1]
ftp = ftplib.FTP('servername', 'username', 'password')
print ftp.sendcmd('SITE CHMOD 644 ' + filename)
ftp.quit()

快乐的节目!

答案 1 :(得分:2)

在这种情况下,我会在paramiko中使用SFTPClient: http://paramiko-docs.readthedocs.org/en/latest/api/sftp.html

您可以连接,打开文件,并更改以下权限:

import paramiko, stat

client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect(your_hostname,
               username=user,
               password=passwd)

sftp = client.open_sftp()
remote = sftp.file(remote_filename, 'w')
#remote.writes here
# Here, user has all permissions, group has read and execute, other has read
remote.chmod(stat.S_IRWXU | stats.S_IRGRP | stats.S_IXGRP
             | stats.IROTH)

chmod方法与os.chmod

具有相同的语义