Orang.FileSystem 0.7.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Orang.FileSystem --version 0.7.0
NuGet\Install-Package Orang.FileSystem -Version 0.7.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="Orang.FileSystem" Version="0.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Orang.FileSystem --version 0.7.0
#r "nuget: Orang.FileSystem, 0.7.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 Orang.FileSystem as a Cake Addin
#addin nuget:?package=Orang.FileSystem&version=0.7.0

// Install Orang.FileSystem as a Cake Tool
#tool nuget:?package=Orang.FileSystem&version=0.7.0

Orang.FileSystem

Search, replace, rename and delete files and its content using the power of .NET regular expressions.

Installation

dotnet add package orang.filesystem

Documentation

See reference documentation for further information.

Usage

Clean .NET project temporary folders:

Fluent API
using System;
using System.Threading;
using Orang;
using Orang.FileSystem;
using Orang.FileSystem.Fluent;

IOperationResult result = new SearchBuilder()
    .MatchDirectory(d => d
        .Name(Pattern.Any("bin", "obj", PatternOptions.Equals))
        .NonEmpty())
    .SkipDirectory(Pattern.Any(".git", ".vs", "node_modules", PatternOptions.Equals | PatternOptions.Literal))
    .Delete(d => d
        .ContentOnly()
        .DryRun()
        .LogOperation(o => Console.WriteLine(o.Path)))
    .Run("<DIRECTORY_PATH>", CancellationToken.None);

Console.WriteLine(result.Telemetry.MatchingDirectoryCount);
Classic API
using System;
using System.Threading;
using Orang;
using Orang.FileSystem;

var search = new Search(
    new DirectoryMatcher()
    {
        Name = new Matcher(@"\A(bin|obj)\z"),
        EmptyOption = FileEmptyOption.NonEmpty,
    },
    new SearchOptions()
    {
        SearchDirectory = new DirectoryMatcher()
        {
            Name = new Matcher(@"\A(\.git|\.vs|node_modules)\z", invert: true)
        }
    });

IOperationResult result = search.Delete(
    "<DIRECTORY_PATH>",
    new DeleteOptions()
    {
        ContentOnly = true,
        DryRun = true,
        LogOperation = o => Console.WriteLine(o.Path),
    },
    CancellationToken.None);

Console.WriteLine(result.Telemetry.MatchingDirectoryCount);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
0.7.0 127 1/10/2024
0.6.0 171 11/7/2023
0.6.0-beta 71 10/19/2023
0.5.0 109 9/26/2023
0.4.0 155 8/17/2023
0.4.0-beta.2 77 7/28/2023
0.4.0-beta 112 7/28/2023