向任何文件添加自定义/新属性,无论类型和扩展名如何,例如设置“作者”;在 .txt 文件上
我希望能够向文件添加属性和标签 (特别是 Windows 7 中的电子书文件和电子书相关属性,但有兴趣尽可能多地使用操作系统)
例如,Example.txt、Example.doc 或 Example.epub 都应该存储和携带“作者”、“出版日期”等属性'、'标签'等......
属性应与文件本身一起存储。这样,如果它转移到另一个系统,它会保留属性(即使我需要安装“我的应用程序”以在另一台计算机上支持此功能)
如何使用 .net(首选)以及哪些文件系统概念来实现此 功能我应该学会理解底层概念和限制才能实现此功能吗?
任何应用程序已经这样做了?谢谢
I want the ability add properties and tags to a file
(specifically ebook files and ebook related properties in Windows 7 but interested to go so for as many OSes as possible)
For e.g. Example.txt or Example.doc or Example.epub should all store and carry properties like 'Author', 'Publication date', 'Tags' etc..
the properties should be stored with the file itself. Such that if it is transferred to another system it retains the properties (even if i need to install 'my app' to support this function on the other machine)
How do I make this possible using .net (preferred) and what file system concepts should I learn to understand the underlying concepts and limitations to be able to implement this feature?
Any application that already does this? Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Microsoft 的 DSOFile,但仅适用于 NTFS。
http://blog.rodhowarth.com/2008 /06/如何设置自定义属性文件.html
You can use DSOFile from Microsoft, but only works with NTFS.
http://blog.rodhowarth.com/2008/06/how-to-set-custom-attributes-file.html
你的选择是:
Your options are: