├── README.md
├── flat.png
└── index.php
/README.md:
--------------------------------------------------------------------------------
1 | # Free Super Clean PHP File Directory Listing Script
2 |
3 | Easily display files and folders in a mobile friendly, clean and cool way. Just drop the `index.php` in your folder and you are ready to go. Past versions of this script can be found here: https://halgatewood.com/file-directory-list/
4 |
5 | ## Options
6 |
7 | At the top of the `index.php` file you have a few settings you can change:
8 |
9 | --
10 | `$title = "List of Files";`
11 |
12 | This will be the title of your page and also is set to the meta mitle of the document.
13 |
14 | --
15 | `$color = "light";`
16 |
17 | Change this variable to `dark` when you are feeling down.
18 |
19 | --
20 | `$ignore_file_list = array( ".htaccess", "Thumbs.db", ".DS_Store", "index.php" );`
21 |
22 | Create an array of files that you do not want to appear in the listing
23 |
24 | --
25 | `$ignore_ext_list = array( );`
26 |
27 | You can create an array of extensions not to show, for example: 'jpg,png,gif,pdf'
28 |
29 | --
30 | `$sort_by = "name_asc";`
31 |
32 | This will sort the files, the available options are: name_asc, name_desc, date_asc, date_desc
33 |
34 | --
35 | `$icon_url = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAAyCAYAAADP7vEw....";`
36 |
37 | A data sprite of evenly spaced out icons. You can create your own like the one found here.
38 |
39 | Original:
40 | - https://halgatewood.com/images/icons.png
41 | - https://halgatewood.com/images/icons.psd
42 |
43 | Flat:
44 | - https://halgatewood.com/images/flat.png
45 | - https://halgatewood.com/images/flat.psd
46 |
47 | --
48 | `$toggle_sub_folders = true;`
49 |
50 | If a folder is clicked on, it will slide down the sub folder. You can turn this off here.
51 |
52 | --
53 | `$force_download = true;`
54 |
55 | This will add the html download attribute which forces the download in some browsers.
56 |
57 | --
58 | `$ignore_empty_folders = true;`
59 |
60 | Ability to hide empty folders.
61 |
--------------------------------------------------------------------------------
/flat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/halgatewood/file-directory-list/d6d316a342fcaa66a41aa9779104cbd3157293f4/flat.png
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 |
63 |
64 |
65 |