An open API service indexing awesome lists of open source software.

https://github.com/pattazl/pywebfilemanager

File Manager on web, created by python2,基于python2的web的文件管理系统( support browse, upload,download, rename,delete...)
https://github.com/pattazl/pywebfilemanager

filemanager filesystem python27 web

Last synced: 2 months ago
JSON representation

File Manager on web, created by python2,基于python2的web的文件管理系统( support browse, upload,download, rename,delete...)

Awesome Lists containing this project

README

          

pyFileManager
=============

Support python 2, fork from pyFileManager , add some functions :

1. support upload file , search file's name in folder, get size of folder
2. support different language code such as chinese
3. can set root_path in `lib\config\config.py`

---

A simple web file manager in Python.

![screenshot](screenshot.png)

#### Usage:

1. install python 2.x
2. check config at `lib\config\config.py`
3. make cwd(current working directory) is this program , run `python ./server.py`
4. open the browser and go to the http://127.0.0.1:8083(default)

---

#### FEATURES :
- english translation
- reverse-proxy support
- display chmod
- download, rename and delete files
- support upload file , search file's name in folder, get size of folder
- support different language code such as chinese

#### HOW TO USE WITH NGINX :
- change "app_dir" to desired directory
- use this location configuration with NGiNX :
```
location /directory {
proxy_pass http://127.0.0.1:8083;
}
```