C#如何设置文件夹图标?

时间:2011-06-30 08:16:39

标签: c# icons

我使用FilePathDialog.SelectedPath获取文件夹的路径 我也知道icon的路径 但我不知道如何设置该文件夹的图标

4 个答案:

答案 0 :(得分:1)

设置一些文件属性似乎很重要。

基于https://github.com/dimuththarindu/FIC-Folder-Icon-Changer的是精简版。

在要设置其属性的文件夹中,创建三个文件:

  • MyIcon.ico

  • 要显示的图标。您可以使用其他文件名。

  • desktop.ini-包含以下文本

    [。ShellClassInfo]

    IconResource = MyIcon.ico,0

    [ViewState]

    Mode =

    Vid =

    FolderType = Generic

  • .hidden-包含以下文本

    desktop.ini

    MyIcon.ico

在我的案例中,文件类型为带有BOM的UTF-8。

然后,您需要将所有三个文件的属性设置为

  • 隐藏

  • 只读

最后,您需要通知系统发生了更改

SHChangeNotify(0x08000000, 0x0000, (IntPtr)null, (IntPtr)null);

假设您使用名为Resources的文件夹创建了一个Visual Studio解决方案,其中包含三个文件,下面是设置图标的代码:

using System;
using System.IO;
using System.Runtime.InteropServices;

namespace SetFolderIcon
{
    class Program
    {
        [DllImport("shell32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern void SHChangeNotify(
            int wEventId, int uFlags, IntPtr dwItem1, IntPtr dwItem2);

        static void Main(string[] args)
        {
            string location = $"C:\\Users\\Balint\\Desktop";
            string folderPath = Path.Combine(location, "My Folder");

            string desktopIniPath = Path.Combine(folderPath, "desktop.ini");
            string iconPath = Path.Combine(folderPath, "MyIcon.ico");
            string hiddenPath = Path.Combine(folderPath, ".hidden");

            Directory.CreateDirectory(folderPath);

            File.Copy($"Resources\\desktop.ini", desktopIniPath);
            File.Copy($"Resources\\Klinng.ico", iconPath);
            File.Copy($"Resources\\.hidden", hiddenPath);

            File.SetAttributes(desktopIniPath,
                File.GetAttributes(desktopIniPath)
                | FileAttributes.Hidden
                | FileAttributes.ReadOnly);
            File.SetAttributes(iconPath,
                File.GetAttributes(iconPath)
                | FileAttributes.Hidden
                | FileAttributes.ReadOnly);
            File.SetAttributes(hiddenPath,
                File.GetAttributes(hiddenPath)
                | FileAttributes.Hidden
                | FileAttributes.ReadOnly);
            File.SetAttributes(folderPath,
                File.GetAttributes(folderPath)
                | FileAttributes.ReadOnly);

            SHChangeNotify(0x08000000, 0x0000, (IntPtr)null, (IntPtr)null);
        }
    }
}

答案 1 :(得分:0)

您必须编写desktop.ini文件。

[.ShellClassInfo]
IconResource=Icon.ico,0
IconFile=Icon.ico
IconIndex=0
[ViewState]
Mode=
Vid=
FolderType=Pictures

C#代码

string dir = "Folder Path";   
string[] lines = { "[.ShellClassInfo]", "IconResource=Icon.ico,0", "[ViewState]", "Mode=", "Vid=", "FolderType=Pictures" };
File.WriteAllLines(dir + @"\desktop.ini", lines);

IconResource:{Icon Path},0
FolderTypes:GenericDocumentsPicturesMusicVideos

如果您需要更多信息,请查看以下GitHub项目:https://github.com/FIC-Folder-Icon-Changer

答案 2 :(得分:-1)

this website有一个非常相似的例子

答案 3 :(得分:-1)

将图标分配给文件夹基本上涉及两个步骤(如果您希望创建文件夹,则可能需要三个步骤):

在要为其创建图标的文件夹(“目标文件夹”)内创建一个desktop.ini文件。 将目标文件夹的属性设置为“系统”。

更多:

Create Icons for Folders in Windows Explorer, Using C#