├── .github
└── dependabot.yml
├── .gitignore
├── LICENSE
├── README.md
├── demo-2.html
├── demo-files
├── 1
│ ├── 2
│ │ └── construction-work-carpenter-tools.jpg
│ └── city-houses-village-buildings.jpg
├── So Much Trouble In The World.mp3
├── animals
│ ├── animal-brown-horse.jpg
│ ├── nature-animal-fur-dangerous.jpg
│ └── nature-animal-wolf-wilderness.jpg
├── archive-document.zip
├── art-creative-metal-creativity.jpg
├── blue-abstract-glass-balls.jpg
├── books-magazines-building-school.jpg
├── cipher-core.js
├── city-houses-village-buildings.jpg
├── construction-work-carpenter-tools.jpg
├── folder test
│ └── black-and-white-art-building-window.jpeg
├── nature
│ ├── dawn-nature-sunset-trees.jpg
│ ├── forest
│ │ ├── bench-forest-trees-path.jpeg
│ │ ├── nature-forest-ground-dangerous.jpg
│ │ ├── nature-forest-trees-environment.jpg
│ │ ├── wood-nature-forest-bridge.jpg
│ │ ├── wood-nature-forest-trees.jpg
│ │ ├── wood-nature-sun-forest.jpg
│ │ └── wood-nature-sunny-forest.jpg
│ ├── landing-stage-sea-nature-beach.jpg
│ ├── landscape-mountains-nature-hills.jpeg
│ ├── landscape-nature-man-person.jpeg
│ ├── landscape-nature-sky-sunset.jpg
│ ├── nature-plant-leaf-drop-of-water.jpeg
│ ├── nature-sky-sunset-sun.jpg
│ ├── pexels-photo (1).jpeg
│ ├── pexels-photo (2).jpeg
│ ├── pexels-photo.jpeg
│ ├── pexels-photo.jpg
│ ├── snow-mountains-nature-summer.jpg
│ ├── streets-landscape-mountains-nature.jpg
│ ├── water-summer-island-vibes.jpg
│ └── water-sunrise.jpg
├── open-office-document.odt
├── pdf-document.pdf
├── unknown file.url
├── web-page.html
└── word-document.doc
├── dist
├── ajax
│ └── move-file.php
├── connectors
│ └── connector.php
├── icons
│ ├── fonts
│ │ ├── file-tree-icons.eot
│ │ ├── file-tree-icons.svg
│ │ ├── file-tree-icons.ttf
│ │ └── file-tree-icons.woff
│ └── style.css
├── js
│ ├── file-tree-browser.js
│ └── file-tree-browser.js.map
├── lib
│ ├── crypto-js
│ │ ├── crypto-js.js
│ │ └── crypto-js.min.js
│ └── html5sortable
│ │ ├── html5sortable.js
│ │ ├── html5sortable.min.js
│ │ └── html5sortable.min.js.map
└── templates
│ ├── bootstrap4.css
│ └── bootstrap4.html
├── file-tree-generator-preview.png
├── gulpfile.js
├── index.html
├── package-lock.json
├── package.json
├── src
├── ajax
│ └── move-file.php
├── connectors
│ └── connector.php
├── icons
│ ├── Read Me.txt
│ ├── demo-files
│ │ ├── demo.css
│ │ └── demo.js
│ ├── demo.html
│ ├── fonts
│ │ ├── file-tree-icons.eot
│ │ ├── file-tree-icons.svg
│ │ ├── file-tree-icons.ttf
│ │ └── file-tree-icons.woff
│ ├── selection.json
│ └── style.css
├── lib
│ ├── crypto-js
│ │ ├── crypto-js.js
│ │ └── crypto-js.min.js
│ └── html5sortable
│ │ ├── html5sortable.js
│ │ ├── html5sortable.min.js
│ │ └── html5sortable.min.js.map
├── templates
│ ├── bootstrap4.css
│ └── bootstrap4.html
└── ts
│ └── file-tree-browser.ts
└── tsconfig.json
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "npm" # See documentation for possible values
9 | directory: "/" # Location of package manifests
10 | schedule:
11 | interval: "weekly"
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | MEMO.txt
2 | .vscode
3 | .htaccess
4 | apple-touch-icon.png
5 | browserconfig.xml
6 | favicon-16x16.png
7 | favicon-32x32.png
8 | favicon.ico
9 | manifest.json
10 | mstile-150x150.png
11 | node_modules
12 | safari-pinned-tab.svg
13 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # File Tree Browser
2 |
3 | ## Demo
4 |
5 |
Documentation & Download: https://github.com/migliori/file-tree-browser
24 | 25 |48 |
60 |
91 |
101 |
This script scans a directory recursively and allows to navigate inside it like a file explorer.
It normally allows to drag and drop files from one directory to another.
This feature is disabled in the demo.
Documentation & Download: https://github.com/migliori/file-tree-browser
25 |
Generated by IcoMoon
272 |48 |
60 |
91 |
101 |