Skip to content

Instantly share code, notes, and snippets.

View ZoeS17's full-sized avatar

Zoe ZoeS17

View GitHub Profile
@ZoeS17
ZoeS17 / ftpserver.py
Last active March 14, 2021 01:12 — forked from scturtle/ftpserver.py
simple ftp server by python
#!/usr/bin/env python3
# coding: utf-8
import os,socket,threading,time
allow_delete = False
local_ip = socket.gethostbyname(socket.gethostname())
local_port = 21
currdir=os.path.abspath('.')
class FTPserverThread(threading.Thread):