Click here to Skip to main content
15,885,918 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to save the image file in the shared folder using vc++? I want to save the jpeg file from my system to the shared folder in which the image is the screenshot of my system. How to perform this using vc code? help me
Posted

1. open the file
2. write the data
3. close the file

You write a file in a shared folder exactly the same way as in a local folder.
 
Share this answer
 
As markkuk say, the process is exactly the same than when you want to write to a local file. Being that said, you should try to write the file in a local folder and then change the path to one remote one (\\server\shared folder\xxx\yyy\zzz.aaa) of course it will fail if the remote path is not available so keep this in mind and test it... it would surely be a problem if your application fails suddenly because the remote path does not exists.

Just in case... and in order to know how to write files[^]...

Hope this helps.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900