Platforms to show: All Mac Windows Linux Cross-Platform

uuEncodeMBS(data as string, name as string, mode as Integer = &o755) as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
global method Base 64 MBS Encryption Plugin 16.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
UU Encoding.
Example
dim f as FolderItem = SpecialFolder.Desktop.Child("test.jpg")
dim b as BinaryStream = BinaryStream.Open(f)
dim s as string = b.Read(b.Length)

dim d as string = uuEncodeMBS(s, "test")

f = SpecialFolder.Desktop.Child("test.txt")
b = BinaryStream.Create(f, true)

b.Write d

Encodes binary data as text similar to Base64.
The data is prefixed with file name and mode.

Returns empty text if something goes wrong.
Raises out of memory exception in case of low memory situation.

Blog Entries

The items on this page are in the following plugins: MBS Encryption Plugin.


The biggest plugin in space...