如何在硬盘上获取目标文件的快捷方式?

时间:2012-10-25 08:35:46

标签: c#

我试图使用此功能,但遇到一些错误:

public string GetShortcutTargetFile(string shortcutFilename)
        {
            string pathOnly = System.IO.Path.GetDirectoryName(shortcutFilename);
            string filenameOnly = System.IO.Path.GetFileName(shortcutFilename);

            Shell shell = new Shell();
            Folder folder = shell.NameSpace(pathOnly);
            FolderItem folderItem = folder.ParseName(filenameOnly);
            if (folderItem != null)
            {
                Shell32.ShellLinkObject link = (Shell32.ShellLinkObject)folderItem.GetLink;
                return link.Path;
            }

            return string.Empty;
        }

        static void Main(string[] args)
        {
            const string path = @"C:\link to foobar.lnk";
            Console.WriteLine(GetShortcutTargetFile(path));
        }

第一个错误是在线:

Shell32.ShellLinkObject link = (Shell32.ShellLinkObject)folderItem.GetLink;

在行的右侧(Shell32.ShellLinkObject)folderItem.GetLink 我得到错误:

Error   2   One or more types required to compile a dynamic expression cannot be found. Are you missing references to Microsoft.CSharp.dll and System.Core.dll?

最后一行:

Console.WriteLine(GetShortcutTargetFile(path));

错误发生在:GetShortcutTargetFile(path)函数是静态的,但我删除了静态,然后我在最后一行中找到了错误。

Error   4   An object reference is required for the non-static field, method, or property 'GatherLinks.Form1.GetShortcutTargetFile(string)

如何修复所有错误以及如何获取目标文件的所有缺点?

1 个答案:

答案 0 :(得分:2)

第一个错误:在项目设置中添加对Shell32.dll的引用。

第二个错误:你在哪里放置这两个功能?您似乎正在尝试在表单中创建函数。这就是您无法访问“GatherLinks.Form1.GetShortcutTargetFile(string)”的原因。 将代码从main函数移动到Form加载事件,您将能够编译:)