Hi all, hope u could help me to solve this.

The database for my application is located in another PC. Assume it is "\\server\database.mdb". I also save some images in folder "\\server\images\".
Then I want to add an image from another PC to the database. I take out a full image file path, assume "D:\img\example.jpg", with some modification I finally got "\\server\images\example.jpg". I add this path to "database.mdb" and make a copy from "D:\img\example.jpg" to "\\server\images\example.jpg". Until this everything is working fine. So when I want to acces the image I just use "\\server\images\example.jpg".

( I am using windows, and I share "\\server\" folder, so that everyone can access it )

The problem is my user want to make "\\server\images\" can't be opened from windows explorer.
I am thinking about using TCPSocket with client and server, but a lot of effort will be needed.

Can I just make "\\server\images\" can only be accessed from my qt application?