C#文件管理器、读取文件列表

打开文件夹和选择其中某一项 1private void openExplorer() 2{ 3 string FilePath = Directory.GetCurrentDirectory(); 4 //打开文件夹并选中文件 5 System.Diagnostics.Process.Start("Explorer", "/select," + FilePath + "\\" + "infolist.xml"); 6 //仅打开文件夹 7 System.Diagnostics.Process.Start(FilePath); 8} 读取某位置的指定后缀文件(列

Winform适配dpi

https://zhuanlan.zhihu.com/p/128588859 在项目中添加一个:应用程序清单文件 在清单文件app.manifest的 </assembly> 标签下添加 1<application xmlns="urn:schemas-microsoft-com:asm.v3"> 2 <windowsSettings> 3 <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> 4 …

归档辅助小程序

最近写了一个工作用的小程序:https://github.com/kasusa/archive_helper 然后从开始写到现在大概花了5小时