I have an application uses C://root folder. This folder contains images. These images are readed by Pictureboxes.
- Images are coming from a linux machine by FTP. A linux machine uses ftp to open C://root which is in the windows. Save the IMAGE_1.jpg.
- IMAGE_1.jpg is readed by C# windows form application to show in the picturebox.
Images are coming every 10 second from linux machine. Windows shows these images in a thread.
Sometimes, linux or windows send exception. Because while one of them trying to read image to show(windows), the other is trying to save the image(linux)
Therefore, I have to understand that, if Image_1.jpg is used by linux machine, do not try to show the image in win form.
But how?