如何过滤Word临时文件

发布于 2024-11-08 07:00:02 字数 139 浏览 0 评论 0原文

现在,我正在开发一个winform系统。我想过滤word临时文件或临时文件名。当有人打开一个word文件时,在我的系统中他会看到临时文件。

然后对临时文件进行一些操作,系统将抛出异常。

我只想过滤文件而不抛出 Exception 。

Right now, I'm developing a winform system.I want to filter word temp file or temp filename.When someone open a word file ,in my system he will see the temp file .

And then doing some operation with temp file, the system will throw an Exception .

I just want filter the file and don't throw the Exception .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

腹黑女流氓 2024-11-15 07:00:02

这对我有用:

var files = new DirectoryInfo(@"C:\Users\Alex\Desktop").GetFiles()
    .Where(arg => !arg.Attributes.HasFlag(FileAttributes.Hidden) || arg.Extension != ".docx")
    .ToList();

您还可以通过文件名前缀添加限制:

var files = new DirectoryInfo(@"C:\Users\Alex\Desktop").GetFiles()
    .Where(arg => !(arg.Attributes.HasFlag(FileAttributes.Hidden) && arg.Extension == ".docx" && arg.Name.StartsWith("~$")))
    .ToList();

This worked for me:

var files = new DirectoryInfo(@"C:\Users\Alex\Desktop").GetFiles()
    .Where(arg => !arg.Attributes.HasFlag(FileAttributes.Hidden) || arg.Extension != ".docx")
    .ToList();

You can also add limiting by file name prefix:

var files = new DirectoryInfo(@"C:\Users\Alex\Desktop").GetFiles()
    .Where(arg => !(arg.Attributes.HasFlag(FileAttributes.Hidden) && arg.Extension == ".docx" && arg.Name.StartsWith("~$")))
    .ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文