因此,我遵循了一个使用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?

最佳答案

如果您想访问更多文件元数据,则.NET框架提供了ootb,我想您需要使用第三方库。
否则,您需要编写自己的COM包装器以访问这些详细信息。


  有关纯C#示例,请参见此link


这是一个如何读取文件属性的示例:


  将对Shell32.dll的引用从“ Windows / System32”文件夹添加到
  你的项目


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}\t{1}: {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);

关于c# - 如何读取扩展文件属性/文件元数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37869388/

10-11 22:46
查看更多