FileQuery 6.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package FileQuery --version 6.0.0
NuGet\Install-Package FileQuery -Version 6.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FileQuery" Version="6.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FileQuery --version 6.0.0
#r "nuget: FileQuery, 6.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FileQuery as a Cake Addin
#addin nuget:?package=FileQuery&version=6.0.0

// Install FileQuery as a Cake Tool
#tool nuget:?package=FileQuery&version=6.0.0

// FileQuery // Query a file on your system

var fileName = @"C:\Work\Myfile.cs";

    var fileQuery = new FileQuery.QueryFile();

var check = fileQuery.Query(fileName);

        foreach (var item in check)
        {
            Console.WriteLine(item);
        }


// Convert to JSON
var json = fileQuery.ToJson();

        Console.WriteLine(json);
	

    // Query specific TEXT in the file..
check = fileQuery.Query(fileName).Select(a => a.IndexOf("N/A") > -1).ToList();

    foreach (var item in check)
    {
        Console.WriteLine(item);
    }

    Console.ReadLine();
Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0 1,022 7/4/2018
7.0.0 880 7/4/2018
6.0.0 878 7/4/2018
5.0.0 867 7/4/2018
4.0.0 866 7/3/2018
3.0.0 899 7/3/2018
2.0.0 790 7/3/2018
1.0.0 882 7/2/2018

Performance improvements