1
How to get all the files that are in the Resource folder and move to a list.
I am doing it manually, but now I need to take it dynamically and move to a list all the files that are in the Resource.Raw folder
string[] caminho = new string[2];
caminho[0] = "android.resource://" + PackageName + "/" + Resource.Drawable.a;
caminho[1] = "android.resource://" + PackageName + "/" + Resource.Drawable.b;
After knowing the names of the files that are in the folder how do I concatenate the full address of the folder with the names of the files?
– Cyberlacs
Thiago only reinforcing what I really want is to get all the mp4 files from the folder with their full addresses as they will all play.
– Cyberlacs
Good morning Luiz, I changed the function to get only files . mp4, and then add in the list the already concatenated files... Just check to see if this is the way to go.
– Thiago Araújo