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...)
- Host: GitHub
- URL: https://github.com/pattazl/pywebfilemanager
- Owner: pattazl
- License: mit
- Created: 2022-10-08T13:32:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T16:25:28.000Z (over 3 years ago)
- Last Synced: 2025-01-19T02:53:09.296Z (over 1 year ago)
- Topics: filemanager, filesystem, python27, web
- Language: Python
- Homepage:
- Size: 1.21 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.

#### 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;
}
```