send file discord js v12

message.channel.send("Testing message.", { files: ["./images/headpat1.png"] });
//pls like if this worked!

// The file variable has to be an array 
// even if you want to send one file. 
// But because it is an array you can send multiples files. 

// For exemple:
message.channel.send("Testing message.", {
  files: [
    "./images/headpat1.png",
    "./images/headpat2.png"
  ]
});

3.75
8
Awgiedawgie 440220 points

                                    //For Discord.Js v12

const { MessageAttachment } = require("discord.js");

const file = new MessageAttachment("your_file.png"); 
//for a file on projects root if your file is in another subfolder just type the relative path to it 

message.channel.send(file); 

3.75 (8 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
create a file and send to discord discord.js send a text file js discord.js discord.js how to send files how to send file on discord.js attach file discord js how to store a file in discord.js and then send it how to send a file in discord.js discord.js how to send file discord.js send txt file as message discord.js send message as file how to send file in discord js discord js send text from file sending files discord.js send file discord js how to send files with a discord bot discord.js send a file discord.js discord.js send message as txt file how to send files discord.js} discord js send text file discordjs send files how to attach file discord.js discord js send string as file send file discordjs discord.js send text as file attachment from file discord.js how to send a file discord.js discord.js how to send a file send string as a file discord.js discord.js send files make and send txt file discordjs v12 attach file to message discord js v12 discord js v12 send video how to send file discord js discord.js how to make bot send file how to send file with discord.js how to convert string into new file and then send it discord.js Send files discord.js discord js get file send send file discord js v12 how to send a file on discord through node js how to send a file on discord though nodejs write file and send discord.js discord send file located in bot discord.js message.send file discord.js send string as file discord.js send text file discord.js discord js send file to a discord bot discord js send file to bot discord js send file how to send a file with discord.js upload file disocrd.js discordjs send message with file discordjs send local file discord.js send image how to send file discord.js discord js on file uploaded discord.js send only mp4 send mp4 discord.js discordjs send file from url send text file discordjs discord.js send zip file discord.js upload text file send file discord api discord js send zip file using MessageAttachment how to send files discord js upload a file with discord.js discordjs send file attach files to message discordjs send an attachment discord.js discord.js send file discord.net send a file to discord send dm discord.js discord.js how to send message attachment upload local file discordjs discord.js send attachment as a url send file discord.js
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source