I have
Project 1 Default for the other platforms
Folder
- Images
- 1.jpg
- 2.jpg
Project 2 Android
Folder
- Images
- 1.jpg
- 2.jpg
Project 3 iOS
Folder
- Images
- 1.jpg
- 2.jpg
PART 1
If i want to count the number of items in the Images folder
how do i do it?
Can i do it in the default, with embedded images
or do i need to do it with platform specific logic. if so how.
numbers of items: 2
PART 2
And when i can count the numbers of items in the folder, and how can i take out there names.
names
List list = new List();
foreach() {
list.add(x); // 1.jpg 2.jpg
}