我的項目中有一個名爲「Images」的文件夾。我想獲取Image文件夾的路徑,以便我可以瀏覽並獲取文件。獲取文件夾相對路徑的方法
我使用下面的一段代碼來滿足我上面的要求,它工作正常。
string basePath = AppDomain.CurrentDomain.BaseDirectory;
basePath = basePath.Replace("bin", "#");
string[] str = basePath.Split('#');
basePath = str[0];
string path = string.Format(@"{0}{1}", basePath, "Images");
string[] fileEntries = Directory.GetFiles(path);
foreach (string fileName in fileEntries)
listBox.Items.Add(fileName);
只是想知道像有沒有這樣做的優雅方式?獲取文件夾路徑的最佳方式是什麼?
這是無關的WPF – 2012-02-01 07:51:35
您可以使用['Directory.GetParent'](http://msdn.microsoft.com/en-us/library/system.io .directory.getparent.aspx)來檢索給定目錄的父目錄 – 2012-02-01 08:11:19