I currently have an application which needs to retrieve images from a server and copy them locally on a tablet. The problem is that I don't have access to the server from my application. This is why I use a Windows Service to get data from my database or in this case a folder.
I am struggling to find a common ground between the 2 imports (system.io
and Windows.Storage
)
How can I get a directory using System.IO then send it back to my client which will use Windows.Storage to copy it locally ?
I will also consider any alternatives