There is a file limit on itch.io

Hi everyone,

This might save you a Saturday night (like it did not for me): if you upload stuff to itch.io, Butler (their CLI uploader) will not complain. But there will be an error message on your game page if you exceed the file limit of 1000 (files + directories). Oh and the error message will be instead of your game. So be careful!

I did not even know I had this many files… :face_with_raised_eyebrow:

Best wishes
Joe


Just to clarify: I am not complaining about itchio. This post is just meant as a general note (to keep in mind) for other devs. I have seen a couple of Babylon projects using itchio.

3 Likes

Try to delete the .git file on the bundled folder if it has. Or use a Large File Storage

1 Like

Sounds like your including all the NodeJS modules perhaps? You should tell Butler to only target your “dist” folder and not your entire directory.

1 Like

Thanks guys :slight_smile: But it is real. I actually do have slightly less than 1000 asset files (2d art, 3d models, sounds, data…).


That would be plan B then. Because I am not gonna be able to stay below 1000 files :frowning:

ion kno too much about itch, but maybe you could

  • make a large atlas out of all your images (I made a tool to make that easier, though it’s for canvas 2d games mostly)
  • put all your assets into a zip file and then unzip it on the client
  • since the above will be kinda slow and increase loading time.
    you can make multiple chunks of zip files depending on when they’ll be needed in the game and load them on or before demand.
  • put all these files in a separate cdn service like cloudinary and get all of these via network requests
1 Like

ITCH.IO ask you to email them if you need more than 4GB. Maybe you explain to them why you need more individual files?