mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 12:46:47 +02:00
Remove hidden files from indexer results (#4325)
* Added functionality to not display hidden files * Added interfaces for seperating db layer * Updated variable naming and refactored Database connection class * Added tests for WindowsSearchAPI class * Fixed nit with braces * Added function to test that all connections from database are closed
This commit is contained in:
committed by
GitHub
parent
7ed03c8b90
commit
a21a3827fd
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data.Common;
|
||||
using System.Data.OleDb;
|
||||
using System.Text;
|
||||
|
||||
namespace Microsoft.Plugin.Indexer.SearchHelper
|
||||
{
|
||||
public class OleDBResult
|
||||
{
|
||||
public List<object> fieldData;
|
||||
|
||||
public OleDBResult(List<object> fieldData)
|
||||
{
|
||||
this.fieldData = fieldData;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user