从配置文件获取访问FTP服务器目录的用户名、密码
from pyftpdlib.authorizers import DummyAuthorizer
from pyftpdlib.handlers import FTPHandler
from pyftpdlib.servers import FTPServer
class ConfigReader():
def __init__(self):
curpath = os.path.dirname(os.path.realpath(__file__))
self.config_path = os.path.join(curpath,'config\\config.ini')
self.<