SanderSade / DirLister

Simple and powerful folder and drive listing utility for Windows
Mozilla Public License 2.0
103 stars 11 forks source link

JSON output format #1

Open SanderSade opened 5 years ago

SanderSade commented 5 years ago

Think about a format like:

{
    "c:": {
        "files": [
            "autoexec.bat": {
                "size": 513252,         
                "mediaInfo": {
                    "mediaType": "Audio",
                    "duration": "33",
                    "audioChannels": 1,
                    "audioSampleRate": 44100,
                    "audioBitRate": 128
                }
            },
            "command.com" {
                "size": 513252,         
                "mediaInfo": {
                    "mediaType": "Audio",
                    "duration": "33",
                    "audioChannels": 1,
                    "audioSampleRate": 44100,
                    "audioBitRate": 128
                }
            },
        ],
        "folders": [
            "windows": {
                "files": {},
                "folders": {}
            }
        ]
    }
}