如何浏览与应用程序相同的目录中的文件夹

时间:2013-02-19 02:39:51

标签: c# browser directory

Screenshot of Solution

只是在c#中想知道,如果我在图片/ img中设置了一个文件夹,现在我如何从这个文件夹中读取图像,谢谢!

2 个答案:

答案 0 :(得分:1)

您的解决方案似乎是WinForm应用程序

例如将图像加载到PictureBox

PictureBox1.Image = Image.FromFile("img\\image_file_name.jpg");

要知道该文件夹的绝对路径,您可以执行类似

的操作
string img_folder_path = System.IO.Path.Combine(Application.StartupPath, @"img");
string path_to_image = System.IO.Path.Combine(img_folder_path, "image_filename.jpg");
PictureBox1.Image = Image.FromFile(path_to_image);    

答案 1 :(得分:0)

如果修改img目录下文件的Copy to output directory属性并将其设置为Copy by newer,则可以直接访问该文件,例如

Image.FromFile("img\image.png")

enter image description here