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

https://github.com/xcrypt0r/discord-archiver

Bot for download attachments uploaded to discord
https://github.com/xcrypt0r/discord-archiver

archive bot discord

Last synced: 2 months ago
JSON representation

Bot for download attachments uploaded to discord

Awesome Lists containing this project

README

        

# Discord-Archiver
Bot for download attachments uploaded to discord

## Usage
1. Download this repository.
2. Write your token and archive folder path to `config.json`. (I recommend you to use this bot as a selfbot)
3. Open terminal and move to this repository folder.
4. Input this command line.
```
node archiver.js
```

Files will be saved in the archive folder using following structure

```


├── DM
│ │
│ ├── User1
│ │ │
│ │ ├── 2019-03-27
│ │ │ ├── file1.jpg
│ │ │ └── file2.png
│ │ │
│ │ └── 2019-03-28
│ │ ├── file1.jpg
│ │ └── file2.png
│ │
│ └── User2
│ │
│ ├── 2019-03-27
│ │ ├── file1.jpg
│ │ └── file2.png
│ │
│ └── 2019-03-28
│ ├── file1.jpg
│ └── file2.png

├── Server1
│ │
│ ├── Channel1
│ │ │
│ │ ├── 2019-03-27
│ │ │ ├── file1.jpg
│ │ │ └── file2.png
│ │ │
│ │ └── 2019-03-28
│ │ ├── file1.jpg
│ │ └── file2.png
│ └── Channel2
│ │
│ ├── 2019-03-27
│ │ ├── file1.jpg
│ │ └── file2.png
│ │
│ └── 2019-03-28
│ ├── file1.jpg
│ └── file2.png

└── Server2

├── Channel1
│ │
│ ├── 2019-03-27
│ │ ├── file1.jpg
│ │ └── file2.png
│ │
│ └── 2019-03-28
│ ├── file1.jpg
│ └── file2.png
└── Channel2

├── 2019-03-27
│ ├── file1.jpg
│ └── file2.png

└── 2019-03-28
├── file1.jpg
└── file2.png
```