How can I store the contents of a folder which consist entirely of images. I can do it this way.
var files = ["1.jpg","2.jpg",
"3.jpg","4.jpg","5.jpg","6.jpg",
"7.jpg","8.jpg","9.jpg","10.jpg",];
but I'd like to do it more dynamically I'm planning on having 100's of images in the folder. I'm thinking something like this pseudo code
var images
for i to number_of_items_in_folder
images[i]= image_from_folder
The images are coming from a folder (local) called images