Skip to content

Instantly share code, notes, and snippets.

View Enigmatrix's full-sized avatar
🛠️
Tinkering

Chandrasekaran Akash Enigmatrix

🛠️
Tinkering
View GitHub Profile
@scturtle
scturtle / ftpserver.py
Created June 20, 2011 16:03
simple ftp server by python
#!/usr/bin/env python2
# coding: utf-8
import os,socket,threading,time
#import traceback
allow_delete = False
local_ip = socket.gethostbyname(socket.gethostname())
local_port = 8888
currdir=os.path.abspath('.')