Hi,
I am trying to query a webserver for a Users Profile image. I do not know the filename of the image that the user uploads or the file type. What I do know is that a folder is created based on the users id and I have this id.
Additionally, Three files are generated from the uploaded file:
filename_l.extension // _l for large
filename_s.extension // _s for small
filename_xs.extension // extra small
How can I create a query string in Swift that will return any one of these files?
Thanks!