Python: Check whether the FTP connection is successful. python: Check the ftp connection.

Source: Internet
Author: User
Tags ftp connection

Python: Check whether the FTP connection is successful. python: Check the ftp connection.

This example describes how to check whether FTP connection is successful in python. Share it with you for your reference. The details are as follows:

#! /Usr/local/bin/python #-*-coding: UTF-8 -*-#################################### ################################# check whether the FTP connection is successful in python ######################################## ############################ import ftplib ## f = ftplib. FTP ('2017. 168.100.214 ') # f. login ('gdata _ MEM ', '000000') # ftplib. set_debuglevel (2) # enable debug level 2 and display details # data = ftplib. FTP ('2017. 0.0.1 ', 'admin', '000000') # print datafrom ftplib import FTPdef ftp_open (host = '', user ='', passwd = ''): # open FTP try: ftp = FTP () # enable debugging Level 2 and display details) # connect to data = ftp. login (user, passwd) # log on. If you log on anonymously, use an empty string instead of print () # Welcome word # print data return 1 failed t: return 0if _ name __= = '_ main _': if ftp_open ('2017. 0.0.1 ', 'admin', '000000'): # Enable FTP print "FTP opened successfully" else: print "FTP opened failed"

I hope this article will help you with Python programming.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.