文件夹图标更改

Dee*_*mar 6 c#

我正在使用 c# 函数更改文件夹图标。它工作正常,但问题是它第一次工作。我的意思是我无法更改已更改图标的文件夹的图标。下面是代码:

static void Main(string[] args)
{
    LPSHFOLDERCUSTOMSETTINGS FolderSettings = new LPSHFOLDERCUSTOMSETTINGS();
    FolderSettings.dwMask = 0x10;
    FolderSettings.pszIconFile = @"C:\Program Files (x86)\Common Files\TortoiseOverlays\icons\XPStyle\ModifiedIcon.ico";
    FolderSettings.iIconIndex = 0;

    UInt32 FCS_READ = 0x00000001;
    UInt32 FCS_FORCEWRITE = 0x00000002;
    UInt32 FCS_WRITE = FCS_READ | FCS_FORCEWRITE;

    string pszPath = @"D:\Downloaded Data";
    UInt32 HRESULT = SHGetSetFolderCustomSettings(ref FolderSettings, pszPath, FCS_WRITE);
    //Console.WriteLine(HRESULT.ToString("x"));
    //Console.ReadLine();

}

[DllImport("Shell32.dll", CharSet = CharSet.Auto)]
static extern UInt32 SHGetSetFolderCustomSettings(ref LPSHFOLDERCUSTOMSETTINGS pfcs, string pszPath, UInt32 dwReadWrite);

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
struct LPSHFOLDERCUSTOMSETTINGS
{
    public UInt32 dwSize;
    public UInt32 dwMask;
    public IntPtr pvid;
    public string pszWebViewTemplate;
    public UInt32 cchWebViewTemplate;
    public string pszWebViewTemplateVersion;
    public string pszInfoTip;
    public UInt32 cchInfoTip;
    public IntPtr pclsid;
    public UInt32 dwFlags;
    public string pszIconFile;
    public UInt32 cchIconFile;
    public int iIconIndex;
    public string pszLogo;
    public UInt32 cchLogo;
}
Run Code Online (Sandbox Code Playgroud)

可能是什么原因?

Ale*_*var 4

我也遇到过类似的问题。只需在第二次调用该函数之前删除desktop.ini 文件即可。如果您想清除文件夹图标,请使用相同的场景:

  1. 删除桌面.ini。
  2. 省略以下行:

....

FolderSettings.pszIconFile = @"{icon path}";
FolderSettings.iIconIndex = 0;
Run Code Online (Sandbox Code Playgroud)

....