5

我有一个充满 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;
    }
}
4

5 回答 5

1

您可以使用Enumerable.GroupBy 应该工作的这个 Linq 查询(现已测试):

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);
}

这是我用来确定 astring是否可解析为的扩展方法int

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

请注意,我没有使用正则表达式,而是仅使用字符串方法。

于 2013-01-30T14:07:06.617 回答
1

我已经制作了一个基于正则表达式的解决方案,同时显然来晚了。

(?<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" );
    // ...
}
于 2013-01-30T14:25:55.173 回答
0

试试这个

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);
于 2013-01-30T13:54:38.113 回答
0

你可以通过字符串排序来做到这一点吗?我在这里看到的唯一棘手的部分是将文件名转换为可排序的格式。只需将字符串从 dd-mm-yyyy 替换为 yyyymmdd。然后,对列表进行排序并取出最后一条记录。

于 2013-01-30T14:32:01.583 回答
0

这就是你想要考虑的 fileList 包含所有文件名

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

于 2013-01-30T15:07:41.780 回答