Skip to content

Commit 5428b61

Browse files
committed
feat: 支持 Everything 打开属性窗口, 或者打开所在文件夹
1 parent 6f27d76 commit 5428b61

File tree

4 files changed

+88
-3
lines changed

4 files changed

+88
-3
lines changed

src/CurvaLauncher.Common/Apis/ICommonApi.cs

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ public interface ICommonApi
77
public void Open(string name);
88
public void OpenExecutable(string file);
99

10+
public void ShowInFileExplorer(string path);
11+
public void ShowPropertiesWindow(string path);
12+
1013
public void ShowText(string text, TextOptions options);
1114
public void ShowImage(ImageSource image, ImageOptions options);
1215
}

src/CurvaLauncher/Apis/CommonApi.cs

+41-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
1-
using System.Diagnostics;
1+
using System;
2+
using System.Diagnostics;
3+
using System.Runtime.InteropServices;
24
using System.Windows.Media;
35
using CurvaLauncher.Views.Dialogs;
46

57
namespace CurvaLauncher.Apis
68
{
79
public class CommonApi : ICommonApi
810
{
11+
[DllImport("shell32.dll", ExactSpelling = true)]
12+
static extern void ILFree(IntPtr pidlList);
13+
14+
[DllImport("shell32.dll", CharSet = CharSet.Unicode)]
15+
static extern IntPtr ILCreateFromPathW([MarshalAs(UnmanagedType.LPWStr)] string pszPath);
16+
17+
[DllImport("shell32.dll")]
18+
static extern int SHOpenFolderAndSelectItems(IntPtr pidlList, uint cidl, IntPtr[]? apidl, uint dwFlags);
19+
20+
[DllImport("shell32.dll", CharSet = CharSet.Unicode)]
21+
public static extern bool SHObjectProperties(IntPtr hwnd, uint shopObjectType, string pszObjectName, string? pszPropertyPage);
22+
23+
[DllImport("shell32.dll", CharSet = CharSet.Unicode)]
24+
public static extern int ShellExecute(IntPtr hwnd, string lpOperation, string lpFile, string? lpParameters, string? lpDirectory, int nShowCmd);
25+
926
private CommonApi() { }
1027

1128
public static CommonApi Instance { get; } = new();
@@ -24,6 +41,29 @@ public void OpenExecutable(string file) => Process.Start(
2441
UseShellExecute = false
2542
});
2643

44+
public void ShowInFileExplorer(string path)
45+
{
46+
IntPtr pidlList = ILCreateFromPathW(path);
47+
if (pidlList == IntPtr.Zero)
48+
{
49+
throw new ArgumentException("Invalid path");
50+
}
51+
52+
try
53+
{
54+
SHOpenFolderAndSelectItems(pidlList, 0, null, 0);
55+
}
56+
finally
57+
{
58+
ILFree(pidlList);
59+
}
60+
}
61+
62+
public void ShowPropertiesWindow(string path)
63+
{
64+
bool invoked = SHObjectProperties(IntPtr.Zero, 2, path, null);
65+
}
66+
2767
public void ShowImage(ImageSource image, ImageOptions options)
2868
{
2969
new SimpleImageDialog(image, options)

src/Plugins/CurvaLauncher.Plugins.Everything/EverythingQueryResult.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ public void Invoke()
4040
{
4141
if (_plugin.HostContext.IsAltKeyPressed())
4242
{
43-
43+
_plugin.HostContext.Api.ShowPropertiesWindow(_itemFullPath);
4444
}
4545
else if (_plugin.HostContext.IsCtrlKeyPressed())
4646
{
47-
47+
_plugin.HostContext.Api.ShowInFileExplorer(_itemFullPath);
4848
}
4949
else
5050
{

src/TestConsole/Program.cs

+42
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,48 @@
33
using ZXing;
44
using ZXing.Common;
55
using ZXing.QrCode;
6+
using System;
7+
using System.Runtime.InteropServices;
8+
9+
10+
[DllImport("shell32.dll", ExactSpelling = true)]
11+
static extern void ILFree(IntPtr pidlList);
12+
13+
[DllImport("shell32.dll", CharSet = CharSet.Unicode)]
14+
static extern IntPtr ILCreateFromPathW([MarshalAs(UnmanagedType.LPWStr)] string pszPath);
15+
16+
[DllImport("shell32.dll")]
17+
static extern int SHOpenFolderAndSelectItems(IntPtr pidlList, uint cidl, IntPtr[] apidl, uint dwFlags);
18+
19+
static void ShowInFileExplorer(string path)
20+
{
21+
IntPtr pidlList = ILCreateFromPathW(path);
22+
if (pidlList == IntPtr.Zero)
23+
{
24+
throw new ArgumentException("Invalid path");
25+
}
26+
27+
try
28+
{
29+
SHOpenFolderAndSelectItems(pidlList, 0, null, 0);
30+
}
31+
finally
32+
{
33+
ILFree(pidlList);
34+
}
35+
}
36+
37+
string filePath = @"C:\Users";
38+
39+
// Example usage
40+
try
41+
{
42+
ShowInFileExplorer(filePath);
43+
}
44+
catch (Exception ex)
45+
{
46+
Console.WriteLine($"Error: {ex.Message}");
47+
}
648

749
var w = new QRCodeWriter();
850
var b = w.encode("Fuck you world", BarcodeFormat.QR_CODE, 100, 100);

0 commit comments

Comments
 (0)