PigObjFsLib 1.3.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package PigObjFsLib --version 1.3.8
NuGet\Install-Package PigObjFsLib -Version 1.3.8
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="PigObjFsLib" Version="1.3.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PigObjFsLib --version 1.3.8
#r "nuget: PigObjFsLib, 1.3.8"
#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 PigObjFsLib as a Cake Addin
#addin nuget:?package=PigObjFsLib&version=1.3.8

// Install PigObjFsLib as a Cake Tool
#tool nuget:?package=PigObjFsLib&version=1.3.8

PigObjFsLib Sample code

PigObjFsDemoConsole on GitHub

GetFile Sample code

Dim oFile As File = goFS.GetFile(strFilePath)
Console.WriteLine("DateCreated: " & oFile.DateCreated)
Console.WriteLine("DateLastModified: " & oFile.DateLastModified)
Console.WriteLine("Name: " & oFile.Name)
Console.WriteLine("Path: " & oFile.Path)

Return results

DateCreated: 2021/1/25 12:24:13
DateLastModified: 2021/1/26 17:05:00
Name: PigObjFsDemoConsole.exe
Path: C:\GitHub\Dev\PigObjFs\Src\DotNet\PigObjFsDemoConsole\PigObjFsDemoConsole\bin\Debug\net45\PigObjFsDemoConsole.exe

GetFolder Sample code

Dim oFolder As Folder = oFS.GetFolder(strFolderPath)
Console.WriteLine("DateCreated: " & oFolder.DateCreated)
Console.WriteLine("DateLastModified: " & oFolder.DateLastModified)
Console.WriteLine("Name: " & oFolder.Name)
Console.WriteLine("Path: " & oFolder.Path)

Return results

DateCreated: 2021/1/25 11:33:55
DateLastModified: 2021/1/25 12:24:13
Name: net45
Path: C:\GitHub\Dev\PigObjFs\Src\DotNet\PigObjFsDemoConsole\PigObjFsDemoConsole\bin\Debug\net45\

FileExists Sample code

Console.WriteLine("FileExists: " & oFS.FileExists(strFilePath))

Return results

FileExists: True

FolderExists Sample code

Console.WriteLine("FolderExists: " & oFS.FolderExists(strFolderPath))

Return results

FolderExists: True

TextStream Read File code

Dim oTextStream As TextStream
Console.WriteLine("OpenTextFile(" & strFilePath & ")...")
oTextStream = oFS.OpenTextFile(strFilePath, FileSystemObject.pIOMode.ForReading, False)
If oFS.LastErr <> "" Then
	Console.WriteLine(oFS.LastErr)
Else
    Do While Not oTextStream.AtEndOfStream
        Console.WriteLine(oTextStream.ReadLine)
    Loop
	oTextStream.Close()
End If

TextStream WriteFile code

Dim oTextStream As TextStream
Console.WriteLine("OpenTextFile(" & strFilePath & ")...")
oTextStream = oFS.OpenTextFile(strFilePath, FileSystemObject.pIOMode.ForWriting, True)
If oFS.LastErr <> "" Then
	Console.WriteLine(oFS.LastErr)
Else
    oTextStream.WriteLine("WriteLine")
    oTextStream.WriteBlankLines(2)
    oTextStream.Close()
    Console.WriteLine("OK")
End If
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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.1 is compatible. 
.NET Framework net20 is compatible.  net30 is compatible.  net35 was computed.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  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.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 2.0

    • No dependencies.
  • .NETFramework 3.0

    • No dependencies.
  • .NETFramework 4.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • net5.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on PigObjFsLib:

Package Downloads
GetFileAndDirListLib

A class library that scans the current directory and generates directory lists and file lists.

PigObjFsDemoConsole

Demo console program library for PigObjFsLib.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.52 752 5/25/2023
2.0.50 530 5/1/2023
2.0.38 521 4/27/2023
2.0.36 342 4/16/2023
2.0.32 2,065 2/1/2023
2.0.30 5,684 10/16/2022
2.0.28 13,074 6/13/2022
2.0.18 2,212 4/11/2022
2.0.8 638 3/14/2022
1.3.8 2,378 8/28/2021
1.2.5.12 726 7/27/2021
1.2.5.9 373 7/25/2021
1.2.3.16 608 7/9/2021
1.2.3.2 645 2/24/2021
1.2.3 472 1/27/2021
1.2.2 440 1/26/2021
1.2.1 553 1/24/2021
1.1.0 394 1/21/2021
1.0.1 403 1/17/2021
1.0.0 340 1/4/2021

This version which can be compatible with more .net frameworks of Windows and Linux.