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
- Host: GitHub
- URL: https://github.com/xcrypt0r/discord-archiver
- Owner: xCrypt0r
- License: mit
- Created: 2019-03-27T16:36:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-28T17:37:51.000Z (about 6 years ago)
- Last Synced: 2025-01-09T17:03:36.849Z (4 months ago)
- Topics: archive, bot, discord
- Language: JavaScript
- Size: 368 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```