Search code examples
web-servicespython-3.xmodel-view-controllertornado

How can I diplay file list in the server with tornado


I am new to tornado and web service development, and currently implementing a tiny web for practising tornado module.

Based on the web design described in links here

After correct username and password have been submitted, I am trying to display file content of specific folder in the server, and by clicking I can either download a file or enter a subfolder.

Could anybody here tell me the way to implement this function? Thanks a lot!


Solution

  • This feature is not included in the Tornado project itself. You can implement it yourself using Tornado's API. An example of a project that has done so is here:

    https://github.com/hunterlang/Tornado-File-Lister