FilePlus 1.0.21

dotnet add package FilePlus --version 1.0.21
NuGet\Install-Package FilePlus -Version 1.0.21
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="FilePlus" Version="1.0.21" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FilePlus --version 1.0.21
#r "nuget: FilePlus, 1.0.21"
#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 FilePlus as a Cake Addin
#addin nuget:?package=FilePlus&version=1.0.21

// Install FilePlus as a Cake Tool
#tool nuget:?package=FilePlus&version=1.0.21

This software provides various file controls to speed up software development.
(1)File control
(2)Log control
(3)Timestamp
(4)Message UI: SnackBar

(1)File control
Ex1:Direct the Debug.WriteLine stream to file. Easily call CreateDebug() and CloseDebug() when app exit.

Ex2:.Create the log and write,first time call CreateLog("file_name") for create file,
then call addLog("text")

(3)timestamp
Ex1:Get time tick from unix time by call CodeTime.GetTickMs()
Ex2:Get program running time.
Call CodeTime.SetTime1() at program line A, call CodeTime.GetTimeDiff() at program line B.
CodeTime.GetTimeDiff() return the running time from A to B.
if you want to get the string time tick use GetTimeDiffStr() instead.

(4)Open exe file and run it.

(5)Create xx.ini and save app setting.
ini.Write("section_name","key","value") in your code.

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  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.

This package has no dependencies.

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
1.0.21 514 2/21/2023
1.0.20 526 2/21/2023
1.0.19 529 2/20/2023
1.0.18 531 2/13/2023
1.0.17 561 12/19/2022
1.0.16 556 12/19/2022
1.0.15 551 12/16/2022
1.0.14 594 11/29/2022
1.0.13 618 11/25/2022
1.0.12 536 11/24/2022
1.0.11 623 11/21/2022
1.0.10 558 11/18/2022
1.0.9 631 10/31/2022
1.0.8 690 10/19/2022
1.0.7 656 10/19/2022
1.0.6 659 10/19/2022
1.0.5 688 10/19/2022
1.0.4 675 10/17/2022
1.0.3 668 10/17/2022
1.0.2 649 10/17/2022
1.0.0 645 10/14/2022

v1.0.21
-------------------
1.New feature, support hook winProc message.
Easily hook any windows message,by pass window control to HookWinProc() function.
2.you can override the WndProc function.