forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShellIcon.cs
More file actions
39 lines (32 loc) · 956 Bytes
/
Copy pathShellIcon.cs
File metadata and controls
39 lines (32 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System.Diagnostics.Contracts;
using System.Drawing;
using System.Runtime.InteropServices;
using ReClassNET.Util;
namespace ReClassNET.UI
{
public static class ShellIcon
{
public static Icon GetSmallIcon(string filePath)
{
Contract.Requires(filePath != null);
return GetIcon(filePath, NativeMethods.SHGFI_SMALLICON);
}
public static Icon GetLargeIcon(string filePath)
{
Contract.Requires(filePath != null);
return GetIcon(filePath, NativeMethods.SHGFI_LARGEICON);
}
private static Icon GetIcon(string filePath, uint flags)
{
Contract.Requires(filePath != null);
var shinfo = new NativeMethods.SHFILEINFO();
if (NativeMethods.SHGetFileInfo(filePath, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), NativeMethods.SHGFI_ICON | flags).ToInt32() > 0)
{
var icon = Icon.FromHandle(shinfo.hIcon).Clone() as Icon;
NativeMethods.DestroyIcon(shinfo.hIcon);
return icon;
}
return null;
}
}
}