如何读取扩展文件属性/文件元数据
Posted
技术标签:
【中文标题】如何读取扩展文件属性/文件元数据【英文标题】:How to read extended file properties / file metadata 【发布时间】:2016-06-16 21:09:42 【问题描述】:所以,我按照教程使用 ASP.net 核心将文件“上传”到本地路径, 这是代码:
public IActionResult About(IList<IFormFile> files)
foreach (var file in files)
var filename = ContentDispositionHeaderValue
.Parse(file.ContentDisposition)
.FileName
.Trim('"');
filename = hostingEnv.WebRootPath + $@"\filename";
using (FileStream fs = System.IO.File.Create(filename))
file.CopyTo(fs);
fs.Flush();
return View();
我想读取文件的扩展属性(文件元数据),例如:
姓名, 作者, 发布日期, 等并使用这些数据对文件进行排序,有没有使用 Iformfile 的方法?
【问题讨论】:
【参考方案1】:如果你想访问更多的文件元数据,那么 .NET 框架提供了 ootb,我猜你需要使用第三方库。 否则,您需要编写自己的 COM 包装器来访问这些详细信息。
查看link 以获得纯 C# 示例。
这里是如何读取文件属性的示例:
将“Windows/System32”文件夹中对 Shell32.dll 的引用添加到 你的项目
List<string> arrHeaders = new List<string>();
List<Tuple<int, string, string>> attributes = new List<Tuple<int, string, string>>();
Shell32.Shell shell = new Shell32.Shell();
var strFileName = @"C:\Users\Admin\Google Drive\image.jpg";
Shell32.Folder objFolder = shell.NameSpace(System.IO.Path.GetDirectoryName(strFileName));
Shell32.FolderItem folderItem = objFolder.ParseName(System.IO.Path.GetFileName(strFileName));
for (int i = 0; i < short.MaxValue; i++)
string header = objFolder.GetDetailsOf(null, i);
if (String.IsNullOrEmpty(header))
break;
arrHeaders.Add(header);
// The attributes list below will contain a tuple with attribute index, name and value
// Once you know the index of the attribute you want to get,
// you can get it directly without looping, like this:
var Authors = objFolder.GetDetailsOf(folderItem, 20);
for (int i = 0; i < arrHeaders.Count; i++)
var attrName = arrHeaders[i];
var attrValue = objFolder.GetDetailsOf(folderItem, i);
var attrIdx = i;
attributes.Add(new Tuple<int, string, string>(attrIdx, attrName, attrValue));
Debug.WriteLine("0\t1: 2", i, attrName, attrValue);
Console.ReadLine();
您可以丰富此代码以创建自定义类,然后根据您的需要进行排序。
那里有很多付费版本,但有一个免费版本叫WindowsApiCodePack
比如访问图片元数据,我觉得支持
ShellObject picture = ShellObject.FromParsingName(file);
var camera = picture.Properties.GetProperty(SystemProperties.System.Photo.CameraModel);
newItem.CameraModel = GetValue(camera, String.Empty, String.Empty);
var company = picture.Properties.GetProperty(SystemProperties.System.Photo.CameraManufacturer);
newItem.CameraMaker = GetValue(company, String.Empty, String.Empty);
【讨论】:
与Net Core不兼容 @daniherculano .NET Core 是跨平台的。扩展属性可能非常特定于 Windows,包括 shell32.dll 中可用的所有功能 这可以简化。见:***.com/a/46648086/661933以上是关于如何读取扩展文件属性/文件元数据的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Python 和 h5py 读取 HDF5 属性(元数据)