ForceOps 1.3.1

dotnet tool install --global ForceOps --version 1.3.1
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local ForceOps --version 1.3.1
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=ForceOps&version=1.3.1
nuke :add-package ForceOps --version 1.3.1

ForceOps

main build Nuget

Forcefully perform file operations by terminating processes that are using the file or directory.

Only supports windows, and not planned to support linux.

Uses LockCheck to find processes locking files, and will elevate itself if it the process is owned by another user.

See Benchmarks on github pages.

Refer also to 10.4 Example: file deletion in Windows from "A Philosophy of Software Design", which explains why this is a windows specific problem. Linux does not prevent the user from deleting a file if it is being used, see unlink:

If the name was the last link to a file but any processes still have the file open, the file will remain in existence until the last file descriptor referring to it is closed.

Examples

Deleting when a process owned by the current user is using it

❯ forceops rm .\bin\
[14:55:33 INF] Could not delete file "C:\Users\user\myprogram\bin\Debug\net6\myprogram.dll". Beginning retry 1/5 in 500ms. ForceOps process is not elevated. Found 1 process to try to kill: [100724 - myprogram.exe].
[14:55:34 INF] Could not delete file "C:\Users\user\myprogram\bin\Debug\net6\myprogram.dll". Beginning retry 2/5 in 500ms. ForceOps process is not elevated. Found 0 processes to try to kill: [].

Deleting when a process owned by another user is using it (e.g. a windows service)

❯ forceops rm .\bin\Debug\net6\myprogram.exe
[15:07:34 INF] Could not delete file "C:\Users\user\myprogram\bin\Debug\net6\myprogram.exe". Beginning retry 1/5 in 500ms. ForceOps process is not elevated. Found 1 process to try to kill: [115744 - ].
[15:07:34 WRN] Failed to kill process 115744: Access is denied.
[15:07:35 INF] Could not delete file "C:\Users\user\myprogram\bin\Debug\net6\myprogram.exe". Beginning retry 2/5 in 500ms. ForceOps process is not elevated. Found 1 process to try to kill: [115744 - ].
[15:07:35 WRN] Failed to kill process 115744: Access is denied.
[15:07:36 INF] Could not delete file "C:\Users\user\myprogram\bin\Debug\net6\myprogram.exe". Beginning retry 3/5 in 500ms. ForceOps process is not elevated. Found 1 process to try to kill: [115744 - ].
[15:07:37 WRN] Failed to kill process 115744: Access is denied.
[15:07:37 INF] Could not delete file "C:\Users\user\myprogram\bin\Debug\net6\myprogram.exe". Beginning retry 4/5 in 500ms. ForceOps process is not elevated. Found 1 process to try to kill: [115744 - ].
[15:07:38 WRN] Failed to kill process 115744: Access is denied.
[15:07:38 INF] Could not delete file "C:\Users\user\myprogram\bin\Debug\net6\myprogram.exe". Beginning retry 5/5 in 500ms. ForceOps process is not elevated. Found 1 process to try to kill: [115744 - ].
[15:07:39 WRN] Failed to kill process 115744: Access is denied.
[15:07:39 INF] Exceeded retry count of 5. Failed. ForceOps process is not elevated.
[15:07:39 INF] Unable to perform operation as an unelevated process. Retrying as elevated and logging to "C:\Users\user\AppData\Local\Temp\tmp9C14.tmp".
[15:07:42 INF] Successfully deleted as admin

Supported operations

Currently, only delete is supported.

Operations like move and copy can have similar issues if they are overriding files or the source file is in use. It would be reasonable to support these operations in a similar way.

For copying, consider using Microsoft.Build.CopyOnWrite.

Usage: As a CLI

To install the CLI, use the latest exe from releases.

Alternatively, it can be installed as a tool, using the .NET 7 SDK.

dotnet tool install -g forceops

To delete a file:

forceops delete file.txt

Usage: As a library

See the ForceOps.Lib package.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.3.1 241 12/6/2023
1.3.0 170 12/3/2023
1.2.1 217 9/25/2023
1.2.0 210 9/7/2023
1.1.0 255 8/17/2023
1.0.4 163 7/11/2023
1.0.3 155 7/6/2023
1.0.2 142 7/5/2023
1.0.1 149 7/4/2023
1.0.0 149 7/3/2023
1.0.0-pre 250 6/30/2023