Yes, I was able to solve it with this code:
await strapi.entityService.create(“api::article.article”, {
data: article,
files: {
“content.music”: {
path: filePath,
name: fileName,
type: mime.lookup(filePath),
size: stats.size,
}
},
populate: [“content.music”],
});