EzSmb 1.3.10
dotnet add package EzSmb --version 1.3.10
NuGet\Install-Package EzSmb -Version 1.3.10
<PackageReference Include="EzSmb" Version="1.3.10" />
paket add EzSmb --version 1.3.10
#r "nuget: EzSmb, 1.3.10"
// Install EzSmb as a Cake Addin #addin nuget:?package=EzSmb&version=1.3.10 // Install EzSmb as a Cake Tool #tool nuget:?package=EzSmb&version=1.3.10
EzSmb
SMB(Windows shared folder) Client Library powered by TalAloni's SmbLibrary, Xamarin & .NET Core Ready.
Description
It's easy to use, and supports SMB ver2 for Windows 10.
Xamarin & .NET Core can access Windows Shared Folders and NAS without using mpr.dll or Netapi32.dll.
Supports .Net Standard 2.0.
Requirement
SMBLibrary.ForXamarin >= 1.4.6.1
NETStandard.Library >= 2.0.3
Usage
Add NuGet Package to your project.
PM> Install-Package EzSmb
and write code like this:
Get items in shared folder:
//using EzSmb;
//using System;
// Get folder Node.
var folder = await Node.GetNode(@"192.168.0.1\ShareName\FolderName", "userName", "password");
// List items
var nodes = await folder.GetList();
foreach (var node in nodes)
{
Console.WriteLine($"Name: {node.Name}, Type: {node.Type}, LastAccessed: {node.LastAccessed:yyyy-MM-dd HH:mm:ss}");
}
Read file:
//using EzSmb;
//using System;
//using System.Text;
// Get file Node.
var file = await Node.GetNode(@"192.168.0.1\ShareName\FolderName\FileName.txt", "userName", "password");
// Get MemoryStream.
using (var stream = await file.Read())
{
var text = Encoding.UTF8.GetString(stream.ToArray());
Console.WriteLine(text);
}
and more:
- Create new folder/file
- Move folder/file
- Delete folder/file
- Scan servers & shares on LAN
- Authentication
- Random access by Stream
- Get errors
Class Tree: Namespace.md
Breaking changes:
ver1.3.0: The first argument of Node.GetList method has been changed.
Node.GetList(string filter = "*", string relatedPath = null)
// ^^ Inserted ^^ move to second arg
Licence
Author
Contributors
upcu
synmra
icnocop
DenisKrasakovSDV
#What did I do wrong operation? synmra was not added to sidebar...
Links
GitHub - TalAloni/SMBLibrary: SMB client & server implements.
https://github.com/TalAloni/SMBLibrary
Product | Versions 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. |
-
.NETStandard 2.0
- SMBLibrary.ForXamarin (>= 1.4.6.1)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on EzSmb:
Package | Downloads |
---|---|
PiBox.Plugins.Persistence.Smb
PiBox is a `service hosting framework` that allows `.net devs` to `decorate their services with behaviours or functionality (think of plugins) while only using minimal configuration`. |
|
Blobject.CIFS
BLOB storage client for CIFS and SMB file servers, e.g. Windows and SAMBA. Refer to other Blobject packages for other storage repository types. |
|
SmartTender.DocumentService.NetFramework
Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.3.10 | 227,062 | 3/3/2022 |
1.3.9 | 43,158 | 7/13/2021 |
1.3.8 | 1,859 | 6/29/2021 |
1.3.5 | 794 | 6/25/2021 |
1.3.1 | 1,239 | 6/10/2021 |
1.3.0 | 705 | 6/10/2021 |
1.2.0 | 1,169 | 5/24/2021 |
1.1.0 | 742 | 5/23/2021 |
1.0.7 | 983 | 5/16/2021 |
1.0.6 | 758 | 5/15/2021 |
1.0.5 | 882 | 5/11/2021 |
1.0.4 | 708 | 5/11/2021 |
1.0.3 | 676 | 5/10/2021 |
1.0.2 | 685 | 5/10/2021 |
1.0.1 | 738 | 5/6/2021 |
1.0.0 | 780 | 5/6/2021 |
Show NTStatus in error message.