Getting MetaData information from a file using C#

前端 未结 1 1900
陌清茗
陌清茗 2021-01-14 16:08

I was trying to get the metadata from a file using Shell. I am using MVC5 and Windows 8 OS. Here is the below code.

Code

public Json         


        
相关标签:
1条回答
  • 2021-01-14 16:51

    Seems that problem is in strict reference to specific version of Shell32 object(s) on build system which is differs from target system.

    Here is how your reference looks like in project file (C# project in given case):

     <COMReference Include="Shell32">
      <Guid>{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}</Guid>
      <VersionMajor>1</VersionMajor>
      <VersionMinor>0</VersionMinor>
      <Lcid>0</Lcid>
      <WrapperTool>tlbimp</WrapperTool>
      <Isolated>False</Isolated>
    </COMReference>
    

    So after referencing you're using specific version of Shell (ShellClass), which implements

    [Guid("D8F015C0-C278-11CE-A49E-444553540000")]
    [TypeLibType(4176)]
    public interface IShellDispatch
    

    To prevent this on different platforms it is better to create needed objects by name using reflection, rather than referencing specific types with specific versions\libraries. Instead of this code:

    Shell shell = new ShellClass();
    Folder rFolder = shell.NameSpace(file);
    

    You can create Folder object this way:

        private static Folder GetShell32NameSpaceFolder(Object folder)
        {
            var shellAppType = Type.GetTypeFromProgID("Shell.Application");
    
            var shell = Activator.CreateInstance(shellAppType);
            return (Folder)shellAppType.InvokeMember("NameSpace",
            System.Reflection.BindingFlags.InvokeMethod, null, shell, new [] { folder });
        }
    

    Also note that method shell.NameSpace(...) parameter is "The folder for which to create the Folder object. This can be a string that specifies the path of the folder or one of the ShellSpecialFolderConstants values." (MSDN), so you should pass not file path, but directory path of the desired file by, for example, Path.GetDirectoryName(file).

    So your code should work this way:

        public JsonResult Ind(string file)
        {
            List<string> arrHeaders = new List<string>();
            string filename = Path.GetFileName(file);
            Folder rFolder = GetShell32NameSpaceFolder(Path.GetDirectoryName(file));
            FolderItem rFiles = rFolder.ParseName(filename);
            for (int i = 0; i < short.MaxValue; i++)
            {
                 string value = rFolder.GetDetailsOf(rFiles, i).Trim();
                 arrHeaders.Add(value);
            }
            return Json(arrHeaders, JsonRequestBehavior.AllowGet);
        }
    
        private static Folder GetShell32NameSpaceFolder(Object folder)
        {
            var shellAppType = Type.GetTypeFromProgID("Shell.Application");
    
            var shell = Activator.CreateInstance(shellAppType);
            return (Folder)shellAppType.InvokeMember("NameSpace",
            System.Reflection.BindingFlags.InvokeMethod, null, shell, new [] { folder });
        }
    
    0 讨论(0)
提交回复
热议问题