magic.lambda.io 10.0.9

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

// Install magic.lambda.io as a Cake Tool
#tool nuget:?package=magic.lambda.io&version=10.0.9

Magic Lambda IO

This project provides file/folder slots for Magic. More specifically, it provides the following slots.

  • [io.folder.create] - Creates a folder on disc for you on your server.
  • [io.folder.exists] - Returns true if folder exists, otherwise false.
  • [io.folder.delete] - Deletes a folder on disc on your server.
  • [io.folder.list] - Lists all folders within another source folder.
  • [io.folder.move] - Moves a folder to its specified destination.
  • [io.folder.copy] - Copies a folder to its specified destination.
  • [io.file.load] - Loads a file from disc on your server.
  • [io.file.save] - Saves a file on disc on your server.
  • [io.file.save.binary] - Saves a file on disc on your server but contrary to the above assumes content to save is binary.
  • [io.file.exists] - Returns true if file exists, otherwise false.
  • [io.file.delete] - Deletes a file on your server.
  • [io.file.copy] - Copies a file on your server.
  • [io.file.execute] - Executes a Hyperlambda file on your server.
  • [io.file.list] - List files in the specified folder on your server.
  • [io.file.move] - Moves a file on your server.
  • [io.file.unzip] - Unzips a file on your server.
  • [io.stream.open-file] - Opens the specified filename and returns it as a stream
  • [io.stream.save-file] - Saves a stream to the specified destination path
  • [io.stream.read] - Reads all content from the specified stream as a byte array
  • [io.stream.close] - Closes a previously opened stream
  • [io.content.zip-stream] - Creates a ZipStream for you, without touching the file system.
  • [.io.folder.root] - Returns the root folder of your system. (private C# slot)

Fundamentals

All of these slots can only manipulate files and folders inside of your "files" folder in your web server. This are normally files inside of the folder you have configured in your "appsettings.json" file, with the key "magic.io.root-folder". This implies that all paths are relative to this path, and no files or folders from outside of this folder can in any ways be manipulated using these slots.

Notice, if you wish to change this configuration value, then the character tilde "~" means root folder where your application is running from within. There is nothing preventing you from using an absolute path, but if you do, you must make sure your web server process have full rights to modify files within this folder.

[io.folder.create]

Creates a new folder on disc. The example below will create a folder named "foo" inside of the "misc" folder. Notice, will throw an exception if the folder already exists.

io.folder.create:/misc/foo/

[io.folder.exists]

Returns true if specified folder exists on disc.

io.folder.exists:/misc/foo/

[io.folder.delete]

Deletes the specified folder on disc. Notice, will throw an exception if the folder doesn't exists.

io.folder.delete:/misc/foo/

[io.folder.list]

Lists all folders inside of the specified folder. By default hidden folders will not be shown, unless you pass in [display-hidden] and set its value to boolean "true".

io.folder.list:/misc/

[io.folder.move]

Moves the specified source folder to its specified destination folder.

io.folder.move:/misc/source-folder/
   .:/misc/destination-folder/

[io.folder.copy]

Copies the specified source folder to its specified destination folder.

io.folder.copy:/misc/source-folder/
   .:/misc/destination-folder/

[io.file.load]

Loads the specified text file from disc. This slot can only load text files. Or to be specific, there are no ways you can change binary files, hence loading a binary file is for the most parts not something you should do. Although there might exist exceptions to this.

io.file.load:/misc/README.md

[io.file.save]

Saves the specified content to the specified file on disc, overwriting any previous content if the file exists from before, creating a new file if no such file already exists. The value of the first argument will be considered the content of the file.

Notice, the node itself will be evaluated, allowing you to have other slots evaluated before slot saves the file, to return dynamically the content of your file.

io.file.save:/misc/README2.md
   .:This is new content for file

Notice - If you want to save binary content you should use the [io.file.save.binary] override.

[io.file.exists]

Returns true if specified file exists from before.

io.file.exists:/misc/README.md

[io.file.delete]

Deletes the specified file. Will throw an exception if the file doesn't exist.

io.file.load:/misc/DOES-NOT-EXIST.md

[io.file.copy]

Copies the specified file to the specified destination folder and file. Notice, requires the destination folder to exist from before, and the source file to exist from before. This slot will delete any previously existing destination file, before starting the copying process. Just like the save slot, this will evaluate the lambda children before it executes the copying of your file, allowing you to use the results of slots as the destination path for your file.

io.file.copy:/misc/README.md
   .:/misc/backup/README-backup.md

Notice, the folder parts of thye destination folder is optional, and if you don't supply a folder as a part of the path, the source folder will be used by default.

[io.file.execute]

Executes the specified Hyperlambda file. Just like when evaluating a dynamic slot, you can pass in an [.arguments] node to the file, which will be considered arguments to your file. Hence, this slot allows you to invoke a file, as if it was a dynamically created slot, and there is no semantic difference really between this slot and [signal] from the magic.lambda.slots project.

io.file.execute:/misc/some-hyperlambda-file.hl

[io.file.list]

Lists all files inside of the specified folder. By default hidden files will not be shown, unless you pass in [display-hidden] and set its value to boolean "true".

io.file.list:/misc/

[io.file.move]

Similar to [io.file.copy] but deletes the source file after evaluating.

io.file.move:/misc/README.md
   .:/misc/backup/README-backup.md

[io.file.unzip]

Unzips a ZIP file. Notice, the [folder] argument is optional, and the current folder of the ZIP file you're unzipping will be used if no [folder] argument is given.

io.file.unzip:/misc/foo.zip
   folder:/misc/backup/

[io.content.zip-stream]

Creates a memory based ZIP stream you can return over the HTTP response object. Notice, this doesn't create a zip file, but rather a zip stream, which you can manipulate using other slots. This slot is useful if you need to return zipped content as your HTTP response for instance.

Notice, both the root arguments (lambda children) of this slot will be evaluated, in addition to its content nodes, evaluated once for each file declaration node. Notice also that the stream is a memory bases stream, and hence closing it, even in case of an exception, is not necessary.

io.content.zip-stream
   .:/foo/x.txt
      .:content of file

[io.stream.open-file]

Works similarly to [io.file.load] but instead of returning the file's content, it returns the raw stream back to caller.

io.stream.open-file:/foo/bar.txt

After invoking the above, assuming the file exists, a raw Stream object can be found as the value of the [io.stream.open-file] node.

[io.stream.save-file]

Works similarly to [io.file.save] but instead of taking source content of some kind, it assumes the source is an open Stream of some sort.

/*
 * [.stream] here is an open stream, from for instance the HTTP
 * request object, or something similar that somehow is able to open
 * a stream and pass around in Hyperlambda.
 */
.stream
io.stream.save-file:/foo/bar.txt
   get-value:x:@.stream

After invoking the above, assuming the [.stream] node contains a valid Stream object, the file above will contain the content from the stream.

Notice - If the file exists from before the existing file will be deleted, unless you pass in an [overwrite] argument and set its value to false, at which point an exception will be thrown if the file exists from before.

[io.stream.read]

Works similarly to [io.file.load] but instead of taking a source filename of some kind, it assumes the source is an open Stream of some sort.

/*
 * [.stream] here is an open stream, from for instance the HTTP
 * request object, or something similar.
 */
.stream
io.stream.read:x:@.stream

[io.stream.close]

Closes a previously opened stream.

Notice - You would rarely directly use streams from Hyperlambda, and not manipulate them in any ways, but rather use for instance [io.file.load] and similar "high level" slots - And only use streams when you need to directly access the HTTP request stream, to persist a file uploaded by a user, or return a file over the HTTP response object. Hence, directly opening a stream for any other purpose but to return it over the HTTP response object is something you'd probably never want to do. And if you return the stream over the HTTP response object, .Net takes ownership over the stream, and ensures it is closed and disposed. However, for completeness we've still provided the ability to explicitly close a stream using the [io.stream.close] - Even though you would probably never really need to use it. Besides, opening streams for any other purpose but to return them over the HTTP response object, might also create leaks, since there is no means to guarantee that the stream is close in case of exceptions, etc - Unless you explicitly take care of such things manually.

io.stream.open-file:/foo/bar.txt
io.stream.close:x:-

After invoking the above, assuming [.stream] is a valid stream, the stream's raw byte[] content can be found in [io.stream.read].

[.io.folder.root]

Returns the root folder of the system. Cannot be invoked from Hyperlambda, but only from C#. Intended as a support function for other C# slots.

var node = new Node();
signaler.Signal(".io.folder.root", node);

// Retrieving root folder after evaluating slot.
var rootFolder = node.Get<string>();

Project website

The source code for this repository can be found at github.com/polterguy/magic.lambda.io, and you can provide feedback, provide bug reports, etc at the same place.

Quality gates

  • Build status
  • Quality Gate Status
  • Bugs
  • Code Smells
  • Coverage
  • Duplicated Lines (%)
  • Lines of Code
  • Maintainability Rating
  • Reliability Rating
  • Security Rating
  • Technical Debt
  • Vulnerabilities

License

This project is the copyright(c) 2020-2021 of Aista, Ltd thomas@servergardens.com, and is licensed under the terms of the LGPL version 3, as published by the Free Software Foundation. See the enclosed LICENSE file for details.

Product 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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on magic.lambda.io:

Package Downloads
magic.library

Helper project for Magic to wire up everything easily by simply adding one package, and invoking two simple methods. When using Magic, this is (probably) the only package you should actually add, since this package pulls in everything else you'll need automatically, and wires up everything sanely by default. To use package go to https://polterguy.github.io

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
17.2.0 265 1/22/2024
17.1.7 146 1/12/2024
17.1.6 129 1/11/2024
17.1.5 146 1/5/2024
17.0.1 176 1/1/2024
17.0.0 342 12/14/2023
16.11.5 313 11/12/2023
16.9.0 309 10/9/2023
16.7.0 523 7/11/2023
16.4.1 364 7/2/2023
16.4.0 388 6/22/2023
16.3.1 354 6/7/2023
16.3.0 342 5/28/2023
16.1.9 612 4/30/2023
15.10.11 470 4/13/2023
15.9.1 612 3/27/2023
15.9.0 465 3/24/2023
15.8.2 510 3/20/2023
15.7.0 358 3/6/2023
15.5.0 1,531 1/28/2023
15.2.0 643 1/18/2023
15.1.0 1,137 12/28/2022
14.5.7 725 12/13/2022
14.5.5 801 12/6/2022
14.5.1 671 11/23/2022
14.5.0 632 11/18/2022
14.4.5 711 10/22/2022
14.4.1 745 10/22/2022
14.4.0 671 10/17/2022
14.3.1 1,233 9/12/2022
14.3.0 655 9/10/2022
14.1.3 922 8/7/2022
14.1.2 663 8/7/2022
14.1.1 668 8/7/2022
14.0.14 708 7/26/2022
14.0.12 662 7/24/2022
14.0.11 670 7/23/2022
14.0.10 654 7/23/2022
14.0.9 646 7/23/2022
14.0.8 715 7/17/2022
14.0.5 809 7/11/2022
14.0.4 747 7/6/2022
14.0.3 717 7/2/2022
14.0.2 668 7/2/2022
14.0.0 838 6/25/2022
13.4.0 2,017 5/31/2022
13.3.4 1,428 5/9/2022
13.3.0 934 5/1/2022
13.2.2 759 4/25/2022
13.2.0 896 4/21/2022
13.1.0 1,008 4/7/2022
13.0.0 734 4/5/2022
11.0.7 1,107 3/10/2022
11.0.5 816 3/2/2022
11.0.4 784 2/22/2022
11.0.3 759 2/9/2022
11.0.2 822 2/6/2022
11.0.1 789 2/5/2022
10.0.21 776 1/28/2022
10.0.20 744 1/27/2022
10.0.19 767 1/23/2022
10.0.18 745 1/17/2022
10.0.15 930 12/31/2021
10.0.14 560 12/28/2021
10.0.13 605 12/23/2021
10.0.11 509 12/23/2021
10.0.9 518 12/22/2021
10.0.8 552 12/22/2021
10.0.7 715 12/22/2021
10.0.5 749 12/18/2021
9.9.9 1,698 11/29/2021
9.9.4 1,062 11/21/2021
9.9.3 540 11/9/2021
9.9.2 652 11/4/2021
9.9.0 741 10/30/2021
9.8.9 710 10/29/2021
9.8.7 658 10/27/2021
9.8.6 624 10/27/2021
9.8.5 732 10/26/2021
9.8.0 1,370 10/20/2021
9.7.9 634 10/19/2021
9.7.5 1,462 10/14/2021
9.7.0 859 10/9/2021
9.6.6 1,193 8/14/2021
9.6.2 1,251 8/9/2021
9.5.8 1,388 8/4/2021
9.4.5 1,331 6/29/2021
9.3.6 1,161 6/21/2021
9.2.0 2,771 5/26/2021
9.1.4 1,273 4/21/2021
9.1.0 1,038 4/14/2021
9.0.0 848 4/5/2021
8.9.9 483 3/30/2021
8.9.4 1,522 3/26/2021
8.9.3 992 3/19/2021
8.9.2 1,011 1/29/2021
8.9.1 1,027 1/24/2021
8.9.0 1,088 1/22/2021
8.6.9 2,992 11/8/2020
8.6.6 1,983 11/2/2020
8.6.0 3,945 10/28/2020
8.5.0 1,860 10/23/2020
8.4.0 5,530 10/13/2020
8.3.1 2,646 10/5/2020
8.3.0 1,258 10/3/2020
8.2.2 2,031 9/26/2020
8.2.1 1,334 9/25/2020
8.2.0 1,340 9/25/2020
8.1.19 3,226 9/21/2020
8.1.18 2,655 9/13/2020
8.1.17 1,931 9/13/2020
8.1.16 634 9/13/2020
8.1.15 1,867 9/12/2020
8.1.11 2,454 9/11/2020
8.1.10 1,279 9/6/2020
8.1.9 1,303 9/3/2020
8.1.8 1,301 9/2/2020
8.1.7 1,195 8/28/2020
8.1.4 1,212 8/25/2020
8.1.3 1,269 8/18/2020
8.1.2 1,205 8/16/2020
8.1.1 1,249 8/15/2020
8.1.0 582 8/15/2020
8.0.2 1,941 8/7/2020
8.0.1 1,279 8/7/2020
8.0.0 1,217 8/7/2020
7.0.1 1,340 6/28/2020
7.0.0 1,250 6/28/2020
5.0.1 3,306 5/29/2020
5.0.0 4,634 2/25/2020
4.0.4 7,777 1/27/2020
4.0.3 1,275 1/27/2020
4.0.2 1,401 1/16/2020
4.0.1 1,378 1/11/2020
4.0.0 1,385 1/5/2020
3.1.2 3,465 12/5/2019
3.1.1 1,372 12/4/2019
3.1.0 2,715 11/10/2019
3.0.0 3,798 10/23/2019
2.0.1 8,166 10/15/2019
2.0.0 1,620 10/13/2019
1.1.9 1,364 10/11/2019
1.1.8 1,297 10/10/2019
1.1.7 602 10/9/2019
1.1.6 627 10/7/2019
1.1.5 620 10/6/2019
1.1.4 628 10/6/2019
1.1.2 610 10/5/2019
1.0.0 671 9/26/2019