2015-04-27 33 views

回答

3

使用文件並傳遞一個目錄。

from twisted.web.server import Site 
from twisted.web.static import File 
from twisted.internet import reactor 

resource = File('/tmp') 
factory = Site(resource) 
reactor.listenTCP(8888, factory) 
reactor.run() 

查看更多here