Revit—获取文件版本(支持17至20)

        写过一篇文章,是分析如何在不打开Revit情况下获取Revit文件的版本信息。里面介绍了解决这个问题的整体思路,但现在看来太繁琐了。这里直接将获取版本的方法代码奉上。如果对其他Revit文件感兴趣,可以移步这里获取Revit文件版本。

       下面的方法兼容了2017到2020的特殊处理。

        

  public static class RevitFileUtils
  {
        private const string MatchVersion = @"((?<=Autodesk Revit )20\d{2})|((?<=Format: )20\d{2})";
        /// 
        /// 获取revit文件版本号[采用流方式]返回结果(eg:2018,2019)
        /// 
        /// 
        /// 返回结果(eg:2018,2019)
        public static string GetVersion(string filePath)
        {
            var version = string.Empty;
            Encoding useEncoding = Encoding.Unicode;
            using (FileStream file = new FileStream(filePath, FileMode.Open))
            {
                //匹配字符有20个(最长的匹配字符串18版本的有20个),为了防止分割对匹配造成的影响,需要验证20次偏移结果
                for (int i = 0; i < 20; i++)
                {
                    byte[] buffer = new byte[2000];
                    file.Seek(i, SeekOrigin.Begin);
                    while (file.Read(buffer, 0, buffer.Length) != 0)
                    {
                        var head = useEncoding.GetString(buffer);
                        Regex regex = new Regex(MatchVersion);
                        var match = regex.Match(head);
                        if (match.Success)
                        {
                            version = match.ToString();
                            return version;
                        }
                    }
                }
            }
            return version;
        }
    }

 

你可能感兴趣的:(Revit二次开发,实践“出”坑)