---
title: "Save image from picture box to hard disk proplem"  
description: "Save image from picture box to hard disk proplem"  
author: "ahmed salah"  
published: 2014-06-14  
updated: 2014-06-16  
canonical: https://www.mindstick.com/forum/2024/save-image-from-picture-box-to-hard-disk-proplem  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Save image from picture box to hard disk proplem

I using this [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii) to show image in c# 2008

```
try{string[] fileNames = Directory.GetFiles("\\\\192.168.1.5\\Hani");foreach (string file in fileNames){if (file.Contains(textBox1.Text)){//pictureBox1.Image = Image.FromFile(Path.Combine("\\192.168.1.5\\Hani", textBox1.Text) + ".JPEG");pictureBox1.Image = Image.FromFile(Path.Combine("\\\\192.168.1.5\\Hani", textBox1.Text)+".JPG");}}}catch (Exception ex){MessageBox.Show(ex.ToString ());}
```

it is [success](https://www.mindstick.com/articles/12957/best-tips-to-make-your-ghostwriting-experience-a-success) in [display image](https://www.mindstick.com/forum/33970/how-to-display-image-without-streach-in-uiscrollview) but how to save [picture](https://answers.mindstick.com/qa/38554/name-the-oscar-winning-sound-designer-who-became-the-first-asian-to-win-the-award-for-best-sound-for-documentary-india-s-daughter-at-the-coveted-motion-picture-sound-editors-63rd-annual-golden-reel-awards) in [hard disk](https://answers.mindstick.com/qa/102443/how-do-external-ssds-differ-from-traditional-hard-disk-drives) c drive or d or any [location](https://www.mindstick.com/blog/11636/relocating-business-or-office-to-another-location)

|

## Replies

### Reply by Sumit Kesarwani

Hi Ahmed,\
try this :\
pictureBox.[Image](https://www.mindstick.com/articles/23551/an-investigate-distinctive-seafood-restaurant-for-your-image-stamp-character).Save(@"Path",ImageFormat.Jpeg);\
I hope the above code will help you.


---

Original Source: https://www.mindstick.com/forum/2024/save-image-from-picture-box-to-hard-disk-proplem

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
