获取新创建的文件夹下的图像路径
本文关键字:文件夹 图像 路径 新创建 创建 获取 | 更新日期: 2023-09-27 18:30:51
我在主项目下创建了一个文件夹(名称 - 图像),我想获取此图像文件夹下的图像路径,那么如何获取此路径....它是WinForm应用程序
图像文件夹的路径 - E:''文件复制''文件复制''图像
如果在debug
文件夹中创建Images
,则可以通过以下方式获取文件夹路径:
System.Windows.Forms.Application.StartupPath + "'Images'"
System.AppDomain.CurrentDomain.BaseDirectory
使用 bin''调试获取项目路径和
var binIndex=projectPath.IndexOf(@"bin'Debug");
获取 bin 的索引。 所以图像路径是
var path =string.Format("{0}Images",@projectPath.Substring(0, binIndex));