Ipfs upload syntax for multiple files

So to upload a file type to ips this is the syntax for a single file type

  const nftFile = new Moralis.File("nftFile.mp4".creatItemFile.files[0]);
  await nftFile.saveIPFS();
  

I was wondering if this or something like it would work

  const nftFile = new Moralis.File("nftFile`${}`".creatItemFile.files[0]);
  await nftFile.saveIPFS();

if not what are the other options for uploading multiple file types? Should I just make a seperate button?

I don’t know of it really matters the name of the file in that syntax, did you try with a name without an extension?