簡體   English   中英

如何在C#中查找具有最新版本的文件名

[英]How to find the Filename with the latest version in C#

我有一個充滿dwg文件的文件夾,所以我只需要查找文件的最新版本,或者如果文件沒有版本,則將其復制到目錄中。 例如,這是三個文件:

ABBIE 08-10#6-09H4決賽06-12-2012.dwg
ABBIE 08-10#6-09H4決賽06-12-2012_1.dwg
ABBIE 08-10#6-09H4決賽06-12-2012_2.dwg

請注意,區別在於一個文件具有_1 ,另一個文件具有_2因此此處的最新文件是_2 我需要保留最新文件並將其復制到目錄中。 某些文件不會具有不同的版本,因此可以將其復制。 我不能專注於文件的創建日期或修改日期,因為在許多情況下它們是相同的,所以我要做的就是文件名本身。 我敢肯定有比我在下面發布的方法更有效的方法。

DirectoryInfo myDir = new DirectoryInfo(@"H:\Temp\Test");
var Files = myDir.GetFiles("*.dwg");

string[] fileList = Directory.GetFiles(@"H:\Temp\Test", "*FINAL*", SearchOption.AllDirectories);

ArrayList list = new ArrayList();
ArrayList WithUnderscores = new ArrayList();
string nameNOunderscores = "";

for (int i = 0; i < fileList.Length; i++)
{
    //Try to get just the filename..
    string filename = fileList[i].Split('.')[0];
    int position = filename.LastIndexOf('\\');
    filename = filename.Substring(position + 1);
    filename = filename.Split('_')[0];

    foreach (FileInfo allfiles in Files)
    {
        var withoutunderscore = allfiles.Name.Split('_')[0];
        withoutunderscore = withoutunderscore.Split('.')[0];
        if (withoutunderscore.Equals(filename))
        {
            nameNOunderscores = filename;
            list.Add(allfiles.Name);
        }
    }

    //If there is a number after the _ then capture it in an ArrayList
    if (list.Count > 0)
    {
        foreach (string nam in list)
        {
            if (nam.Contains("_"))
            {
                //need regex to grab numeric value after _
                var match = new Regex("_(?<number>[0-9]+)").Match(nam);
                if (match.Success)
                {
                    var value = match.Groups["number"].Value;
                    var number = Int32.Parse(value);

                    WithUnderscores.Add(number);
                }
            }
        }

        int removedcount = 0;

        //Whats the max value?
        if (WithUnderscores.Count > 0)
        {
            var maxval = GetMaxValue(WithUnderscores);
            Int32 intmax = Convert.ToInt32(maxval);

            foreach (FileInfo deletefile in Files)
            {
                string shorten = deletefile.Name.Split('.')[0];
                shorten = shorten.Split('_')[0];
                if (shorten == nameNOunderscores && deletefile.Name != nameNOunderscores + "_" + intmax + ".dwg")  
                {
                    //Keep track of count of Files that are no good to us so we can iterate to next set of files
                    removedcount = removedcount + 1;

                }
                else
                {
                    //Copy the "Good" file to a seperate directory
                    File.Copy(@"H:\Temp\Test\" + deletefile.Name, @"H:\Temp\AllFinals\" + deletefile.Name, true); 
                }
            }

            WithUnderscores.Clear();
            list.Clear();
        }

        i = i + removedcount;
    }
    else
    {
        //This File had no versions so it is good to be copied to the "Good" directory
        File.Copy(@"H:\Temp\SH_Plats\" + filename, @"H:\Temp\AllFinals" + filename, true);
        i = i + 1;
    }
}

您可以將此Linq查詢與Enumerable.GroupBy一起使用,該查詢 應該可以正常工作 (現已測試):

var allFiles = Directory.EnumerateFiles(sourceDir, "*.dwg")
    .Select(path => new
    {
        Path = path,
        FileName = Path.GetFileName(path),
        FileNameWithoutExtension = Path.GetFileNameWithoutExtension(path),
        VersionStartIndex = Path.GetFileNameWithoutExtension(path).LastIndexOf('_')
    })
    .Select(x => new
    {
        x.Path,
        x.FileName,
        IsVersionFile = x.VersionStartIndex != -1,
        Version = x.VersionStartIndex == -1 ? new Nullable<int>()
            : x.FileNameWithoutExtension.Substring(x.VersionStartIndex + 1).TryGetInt(),
        NameWithoutVersion = x.VersionStartIndex == -1 ? x.FileName
            : x.FileName.Substring(0, x.VersionStartIndex)
    })
    .OrderByDescending(x => x.Version)
    .GroupBy(x => x.NameWithoutVersion)
    .Select(g => g.First());

foreach (var file in allFiles)
{
    string oldPath = Path.Combine(sourceDir, file.FileName);
    string newPath;
    if (file.IsVersionFile && file.Version.HasValue)
        newPath = Path.Combine(versionPath, file.FileName);
    else
        newPath = Path.Combine(noVersionPath, file.FileName);
    File.Copy(oldPath, newPath, true);
}

這是我用來確定string是否可解析為int的擴展方法:

public static int? TryGetInt(this string item)
{
    int i;
    bool success = int.TryParse(item, out i);
    return success ? (int?)i : (int?)null;
}

請注意,我不使用正則表達式,而僅使用字符串方法。

我提出了一個基於Regex的解決方案,顯然在此期間晚了。

(?<fileName>[A-Za-z0-9-# ]*)_?(?<version>[0-9]+)?\\.dwg

這個正則表達式將識別文件名和版本並將它們分成組,這是一個非常簡單的foreach循環,以獲取字典中的最新文件(因為我很懶),然后您只需要再次將文件名放回一起即可訪問他們。

var fileName = file.Key + "_" + file.Value + ".dwg"

完整的代碼

var files = new[] {
    "ABBIE 08-10 #6-09H4 FINAL 06-12-2012.dwg",
    "ABBIE 08-10 #6-09H4 FINAL 06-12-2012_1.dwg",
    "ABBIE 08-10 #6-09H4 FINAL 06-12-2012_2.dwg",
    "Second File.dwg",
    "Second File_1.dwg",
    "Third File.dwg"
};

// regex to split fileName from version
var r = new Regex( @"(?<fileName>[A-Za-z0-9-# ]*)_?(?<version>[0-9]+)?\.dwg" );
var latestFiles = new Dictionary<string, int>();

foreach (var f in files)
{
    var parsedFileName = r.Match( f );
    var fileName = parsedFileName.Groups["fileName"].Value; 
    var version = parsedFileName.Groups["version"].Success ? int.Parse( parsedFileName.Groups["version"].Value ) : 0;

    if( latestFiles.ContainsKey( fileName ) && version > latestFiles[fileName] )
    {
        // replace if this file has a newer version
        latestFiles[fileName] = version;
    }
    else
    {
        // add all newly found filenames
        latestFiles.Add( fileName, version );
    }
}

// open all most recent files
foreach (var file in latestFiles)
{
    var fileToCopy = File.Open( file.Key + "_" + file.Value + ".dwg" );
    // ...
}

嘗試這個

var files = new My.Computer().FileSystem.GetFiles(@"c:\to\the\sample\directory", Microsoft.VisualBasic.FileIO.SearchOption.SearchAllSubDirectories, "*.dwg");
foreach (String f in files) {
    Console.WriteLine(f);
};

注意:添加對Microsoft.VisualBasic的引用,並在類的開頭使用以下行:

using My = Microsoft.VisualBasic.Devices;

更新

工作樣本[經測試]:

String dPath=@"C:\to\the\sample\directory";
var xfiles = new My.Computer().FileSystem.GetFiles(dPath, Microsoft.VisualBasic.FileIO.SearchOption.SearchAllSubDirectories, "*.dwg").Where(c => Regex.IsMatch(c,@"\d{3,}\.dwg$"));
XElement filez = new XElement("filez");
foreach (String f in xfiles)
{
    var yfiles = new My.Computer().FileSystem.GetFiles(dPath, Microsoft.VisualBasic.FileIO.SearchOption.SearchAllSubDirectories, string.Format("{0}*.dwg",System.IO.Path.GetFileNameWithoutExtension(f))).Where(c => Regex.IsMatch(c, @"_\d+\.dwg$"));
    if (yfiles.Count() > 0)
    {
        filez.Add(new XElement("file", yfiles.Last()));            
    }
    else {
        filez.Add(new XElement("file", f));
    };
};
Console.Write(filez);

可以按字符串排序嗎? 我在這里看到的唯一棘手的部分是將文件名轉換為可排序的格式。 只需將字符串從dd-mm-yyyy替換為yyyymmdd。 然后,對列表進行排序並獲取最后一條記錄。

這就是您要考慮的文件列表包含所有文件名的原因

List<string> latestFiles=new List<string>();
foreach(var groups in fileList.GroupBy(x=>Regex.Replace(x,@"(_\d+\.dwg$|\.dwg$)","")))
    {
        latestFiles.Add(groups.OrderBy(s=>Regex.Match(s,@"\d+(?=\.dwg$)").Value==""?0:int.Parse(Regex.Match(s,@"\d+(?=\.dwg$)").Value)).Last());
    }

LatestFiles包含所有新文件的列表。

如果fileList較大,請使用ThreadingPLinq

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM