1. <legend id='a96np'><style id='a96np'><dir id='a96np'><q id='a96np'></q></dir></style></legend>
    2. <tfoot id='a96np'></tfoot>

        • <bdo id='a96np'></bdo><ul id='a96np'></ul>

        <small id='a96np'></small><noframes id='a96np'>

      1. <i id='a96np'><tr id='a96np'><dt id='a96np'><q id='a96np'><span id='a96np'><b id='a96np'><form id='a96np'><ins id='a96np'></ins><ul id='a96np'></ul><sub id='a96np'></sub></form><legend id='a96np'></legend><bdo id='a96np'><pre id='a96np'><center id='a96np'></center></pre></bdo></b><th id='a96np'></th></span></q></dt></tr></i><div id='a96np'><tfoot id='a96np'></tfoot><dl id='a96np'><fieldset id='a96np'></fieldset></dl></div>

        C# - 添加、编辑和删除文件的标签

        C# - Add, edit and delete tags of file(C# - 添加、编辑和删除文件的标签)
        1. <tfoot id='rU3Ek'></tfoot>

            <tbody id='rU3Ek'></tbody>

          <small id='rU3Ek'></small><noframes id='rU3Ek'>

          1. <i id='rU3Ek'><tr id='rU3Ek'><dt id='rU3Ek'><q id='rU3Ek'><span id='rU3Ek'><b id='rU3Ek'><form id='rU3Ek'><ins id='rU3Ek'></ins><ul id='rU3Ek'></ul><sub id='rU3Ek'></sub></form><legend id='rU3Ek'></legend><bdo id='rU3Ek'><pre id='rU3Ek'><center id='rU3Ek'></center></pre></bdo></b><th id='rU3Ek'></th></span></q></dt></tr></i><div id='rU3Ek'><tfoot id='rU3Ek'></tfoot><dl id='rU3Ek'><fieldset id='rU3Ek'></fieldset></dl></div>

            • <bdo id='rU3Ek'></bdo><ul id='rU3Ek'></ul>
              • <legend id='rU3Ek'><style id='rU3Ek'><dir id='rU3Ek'><q id='rU3Ek'></q></dir></style></legend>
                  本文介绍了C# - 添加、编辑和删除文件的标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想在文件系统中添加和检索文件的标签.

                  I would like to add and retrieve tags of files in File System.

                  由于您可以将 Stackoverflow 问题标记到相关主题,因此您可以在 Windows 文件系统中标记文件:

                  As you can tag Stackoverflow question to the relevant topics, you can tag a file in Windows file-system:

                  以下方式不能让我访问文件的标签,而只能访问其他文件属性.

                  The following way doesn't give me access to the tags of the file, but only to other file properties.

                  string file = @"C:UsersmeDesktopMyFile.doc";
                  
                  FileInfo oFileInfo = new FileInfo(file);
                  MessageBox.Show(oFileInfo.FullName);
                  

                  任何想法如何使用 System.IO 的简单 API 访问标签?

                  Any ideas how to access the tags using the simple API of System.IO?

                  推荐答案

                  由于您可以将 Stackoverflow 问题标记到相关主题,因此您可以在 Windows 文件系统中标记文件

                  As you can tag Stackoverflow question to the relevant topics, you can tag a file in Windows file-system

                  这个假设是错误的.您不能将标签添加到所有文件类型.请参阅这里:

                  This assumption is wrong. You can't add tags to all file types. See here:

                  注意

                  您无法添加或修改某些类型文件的文件属性.例如,您可以添加或修改 Microsoft 的属性Office 文档和搜索,但您不能添加或修改TXT 或 RTF 文件的属性.

                  You cannot add or modify the file properties of some types of files. For example, you can add or modify the properties of Microsoft Office documents and Searches, but you can't add or modify the properties of TXT or RTF files.

                  除了提到的类型之外,还有其他可以包含自定义标签的类型:

                  Besides the types mentioned there are others which can contain custom tags:

                  • mp3文件可以包含各种版本的ID3标签
                  • flac 和 ogg 文件可以包含 ogg-vorbis 标签
                  • jpeg 文件可以包含 exif 数据
                  • pdf 文件可以包含各种信息字段

                  编辑/添加/删除这些标签应该使用专门的库来完成.

                  Editing/adding/removing those tags should be done with dedicated libraries.

                  这篇文章有一个很好的解释:

                  在 Windows 资源管理器中,您可以看到很多文档属性许多文件类型.漂亮、统一的界面表明有一些统一的物业店.事实并非如此.探险家Shell 具有用于属性表处理程序的可扩展接口,从各种文件类型中提取此信息.有一个处理程序用于 JFIF (JPEG) 文件,并且有用于 OLE 文件的处理程序(旧Office 格式),以及新的 Office 格式.

                  In Windows Explorer you can see quite a lot of document properties for many file types. The nice, unified interface suggests that there is some unified property store. That's not really the case. The Explorer Shell has an extensible interface for Property Sheet Handlers that extract this information from various file types. There is a handler for JFIF (JPEG) files, and there are handlers for OLE files (old Office formats), and the new Office formats too.

                  还有这个 post显示 OP如何通过ShellFile成功添加标签.

                  And this post shows how the OP successfully adds tags via ShellFile.

                  另外推荐阅读:获取和设置C#中的文件标签元信息

                  这篇关于C# - 添加、编辑和删除文件的标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
                  Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
                  How to store delegates in a List(如何将代表存储在列表中)
                  How delegates work (in the background)?(代表如何工作(在后台)?)
                  C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
                  Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)

                      <legend id='3PrTb'><style id='3PrTb'><dir id='3PrTb'><q id='3PrTb'></q></dir></style></legend>
                        <i id='3PrTb'><tr id='3PrTb'><dt id='3PrTb'><q id='3PrTb'><span id='3PrTb'><b id='3PrTb'><form id='3PrTb'><ins id='3PrTb'></ins><ul id='3PrTb'></ul><sub id='3PrTb'></sub></form><legend id='3PrTb'></legend><bdo id='3PrTb'><pre id='3PrTb'><center id='3PrTb'></center></pre></bdo></b><th id='3PrTb'></th></span></q></dt></tr></i><div id='3PrTb'><tfoot id='3PrTb'></tfoot><dl id='3PrTb'><fieldset id='3PrTb'></fieldset></dl></div>
                          <tbody id='3PrTb'></tbody>
                      1. <tfoot id='3PrTb'></tfoot>
                          <bdo id='3PrTb'></bdo><ul id='3PrTb'></ul>
                          • <small id='3PrTb'></small><noframes id='3PrTb'>