python 은 paramiko 모듈 을 사용 하여 원 격 파일 에 접근 합 니 다.

767 단어 python
코드:
import paramiko

client = paramiko.SSHClient()
try:
    client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    client.connect(host_ip, port, username, password, timeout=5)
    sftp_client = client.open_sftp()
    remote_file = sftp_client.open(file_path, 'r+')
    '''
    your code to operate the remote file
    '''
    remote_file.close()
except:
    print('failed to open the remote file!')
finally:
    client.close()

좋은 웹페이지 즐겨찾기