使用Directory.GetFiles()进行字符串操作

时间:2012-12-24 04:00:24

标签: c# string

我正在为images[]分配一个数组,该数组包含具有给定目录的完整路径的图像文件名。

 
string[] images = DirLoad.FileNamesArray(
                                          IO.Loaders.PathType.full, 
                                          IO.Loaders.FileExtension.jpg
                                        );

...现在,images[]存储了我需要的所有文件名,因为我必须使用完整路径来完成它,

使用Directory.GetFiles()

下一步操作需要将其作为本地文件名

(然后将每个作为字符串类型参数传递给另一个方法)

所以我的问题是:

如何省略第一部分 - HttpRuntime.AppDomainAppPath ...如果它在数组的每个元素中都相同?

这是用法示例,字符串为currentDir我需要修剪images[]

中的每个元素  
    public class IO
    {
        public class Loaders
        {
            readonly string currentDir = HttpRuntime.AppDomainAppPath;

            public string selecedDirName { get; set; }
            /// <summary>
            /// assign The Loaders.selectedDir First before calling
            /// </summary>
            /// <param name="foldertoLoad"></param>
            /// <returns></returns>
            public enum PathType
            {
                full, local
            }
            public enum FileExtension
            {
                jpg,png,txt,xml,htm,js,aspx,css
            }
            public string[] FileNamesArray(PathType SelectedPathMode, FileExtension selectedfileType)
            {
                string thisFolder = "";
                string thatFileType= string.Format("*.{0}",selectedfileType.ToString());
                switch (SelectedPathMode)
                {
                    case PathType.full:
                        thisFolder = Path.Combine(currentDir, selecedDirName);
                        break;
                    case PathType.local:
                        thisFolder = selecedDirName;
                        break;
                    default:
                        break;
                }

                string[] foundArr = Directory.GetFiles(thisFolder, thatFileType);
                return foundArr;
            }
        }

    }

更新,这是我试过的

 
string fileName;
string[] images = DirLoad.FilesArray(IO.Loaders.PathType.full, IO.Loaders.FileExtention.jpg);
        foreach (var currImage in images)
        {
              int startingAt = DirLoad.currentDir.Length ;
              int finalPoint = currImage.Length - startingAt;
              fileName = new String(currImage.ToCharArray(startingAt, finalPoint));
              baseStyle.Add(string.Format("{0}url({1}) {2}", BackGroundCssProp, fileName, imageProps));
        }

        return baseStyle.ToArray();

3 个答案:

答案 0 :(得分:1)

我不完全确定你到底需要什么。对于你的句子:

  

字符串是currentDir我需要从images []

中的每个元素进行修剪

您可以使用LINQ尝试以下操作:

string currDir = "SomeString";
string[] images = new string[] { "SomeStringabc1.jpg", "SomeStringabc2.jpg", "SomeStringabc3.jpg", "abc.jpg" };
string[] newImages = images.Select(r => r.StartsWith(currDir) 
                                                ? r.Replace(currDir, "") : r)
                            .ToArray();

或使用string.TrimStart

string[] newImages = images.Select(r => r.TrimStart(currDir.ToCharArray())).ToArray();

答案 1 :(得分:1)

抱歉,但我不清楚...如果你只需要整个路径的文件名,那么你可以简单地使用Split来分割整个路径,使用特殊字符并使用最后一个数组元素。

一旦你将获得“图像”数组中的所有路径,你可以尝试下面的代码。

例如: -

    for(i=0;i<images.length;i++)
    {
     string [] cuttofilename=images[i].split('\');
     string filename=cuttofilename[cuttofilename.lentgh-1];
    }

答案 2 :(得分:1)

我仍然无法理解,你想要从头到尾完成什么,但是..如果你有一个完整路径数组,你只需要从这些路径获得文件名,你可以做到以下内容:

实际上files可能包含随机的,绝对不同的路径,但根据我从问题中得到的内容,它是:

var files = Directory.GetFiles(@"path"); 

然后你可以使用Path.GetFileName Method通过简单的Enumerable.Select LINQ语句从这些路径中检索文件名:

var fileNamesOnly = files.Select(f => Path.GetFileName(f));