Displaying images in a subdirectory of the ResourceDirectory

This should be an easy one…

The app that I am working on has quite a few images and I’ve placed all of the images into a subdirectory named “images”. The following is a sample line of code that I use to access an image:

local newimage = display.newImage(“images/sample.png”)

While this works to display images, I get the console warning:

WARNING: File names are case sensitive. You requested (images/sample.png). We assume you meant (sample.png)

Am I using the correct syntax? I haven’t been able to get anything else that I’ve tried to work.
[import]uid: 4418 topic_id: 383 reply_id: 300383[/import]

Due to considerations for other platforms, right now, all the assets have to be in the same directory as your main.lua file. Once we have finalize the requirements, we will give access to different resource directories within the app if possible. I know this is inconvenient for the time being, but also, inside at ansca, we want this feature as well.

Carlos [import]uid: 24 topic_id: 383 reply_id: 688[/import]