Orang.FileSystem
0.6.0
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Orang.FileSystem --version 0.6.0
NuGet\Install-Package Orang.FileSystem -Version 0.6.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.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Orang.FileSystem --version 0.6.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Orang.FileSystem, 0.6.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.6.0 // Install Orang.FileSystem as a Cake Tool #tool nuget:?package=Orang.FileSystem&version=0.6.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
.NETStandard 2.1
- Microsoft.Extensions.FileSystemGlobbing (>= 7.0.0)
- Orang.Common (>= 0.6.0)
- System.Collections.Immutable (>= 1.5.0)
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 | 163 | 1/10/2024 |
0.6.0 | 201 | 11/7/2023 |
0.6.0-beta | 95 | 10/19/2023 |
0.5.0 | 135 | 9/26/2023 |
0.4.0 | 179 | 8/17/2023 |
0.4.0-beta.2 | 89 | 7/28/2023 |
0.4.0-beta | 134 | 7/28/2023 |