判断word后缀函数

发布时间:2023年12月25日

c# 检查是否为.docx或.dotx文件

internal static bool IsDocxEtc(string path)
? ? ? ? {
? ? ? ? ? ? string ext = Path.GetExtension(path).Substring(1);
? ? ? ? ? ? string[] newWT = Enum.GetNames(typeof(NewWordType));
? ? ? ? ? ? if (!newWT.Contains(ext))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? throw new ArgumentOutOfRangeException("path的后缀名必须为.docx或.dotx");
? ? ? ? ? ? }

? ? ? ? ? ? return true;
? ? ? ? }

文章来源:https://blog.csdn.net/vbloveshllm/article/details/46645489
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。