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.
<PackageVersion Include="FilePlus" Version="1.0.21" />
                    
Directory.Packages.props
<PackageReference Include="FilePlus" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#addin nuget:?package=FilePlus&version=1.0.21
                    
Install as a Cake Addin
#tool nuget:?package=FilePlus&version=1.0.21
                    
Install as a Cake Tool

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 595 2/21/2023
1.0.20 579 2/21/2023
1.0.19 581 2/20/2023
1.0.18 587 2/13/2023
1.0.17 621 12/19/2022
1.0.16 616 12/19/2022
1.0.15 614 12/16/2022
1.0.14 654 11/29/2022
1.0.13 676 11/25/2022
1.0.12 593 11/24/2022
1.0.11 680 11/21/2022
1.0.10 623 11/18/2022
1.0.9 688 10/31/2022
1.0.8 749 10/19/2022
1.0.7 714 10/19/2022
1.0.6 719 10/19/2022
1.0.5 748 10/19/2022
1.0.4 739 10/17/2022
1.0.3 728 10/17/2022
1.0.2 709 10/17/2022
1.0.0 704 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.