Skip to content
This repository has been archived by the owner on Feb 23, 2020. It is now read-only.
loudKode edited this page Sep 8, 2019 · 4 revisions

Welcome to the VeryStreamSDK wiki!

Download:https://github.com/loudKode/VeryStreamSDK/releases
NuGet: NuGet

Functions:

  • UserInfo
  • ListFolder
  • CreateNewFolder
  • Upload
  • RemoteUpload
  • RenameFolder
  • DeleteFolder
  • RenameFile
  • MoveFile
  • DeleteFile
  • GetSplash
  • CopyFile
  • GenerateDownloadUrl
  • Download
  • FileInfo
  • RunningConvertsQueue
  • DownloadFileAsStream

Example:

set client

Dim cLENT As VeryStreamSDK.IClient = New VeryStreamSDK.VClient("xxxx", "xxxx")

list files / folders

        Dim RSLT = Await cLENT.ListFolder(TextBox1.Text)
        For Each fold In RSLT.result.folders
            DataGridView1.Rows.Add(fold.name, fold.id)
        Next
        For Each fle In RSLT.result.files
            DataGridView1.Rows.Add(fle.name, fle.ID)
        Next
Clone this wiki locally