LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

How many files could a project contains?

Root / Programming Questions / [.]

raimondzCreated:
Hi, recently I tried to store lot of files on a project (Over 200) and noticed that there is a delay (Greater than 1 second) when I open the project folder via smilebasic file explorer. So I'm asking this just in case? PS: I have a lot of files because I'm storing portion of an image and the palletes of them. I tried to store them in code but I ran out of characters.

Hi, recently I tried to store lot of files on a project (Over 200) and noticed that there is a delay (Greater than 1 second) when I open the project folder via smilebasic file explorer. So I'm asking this just in case? PS: I have a lot of files because I'm storing portion of an image and the palletes of them. I tried to store them in code but I ran out of characters.
The limit would be around 2^31-1 IIRC

Depends on if it's a signed number or not. Signed 32-bit integers have a range of -231 to 231 - 1, whereas unsigned 32-bit integers have a range of 0 to 232 - 1.