{"id":24422757,"url":"https://github.com/loudkode/allwaycloudsdk","last_synced_at":"2025-07-29T02:34:13.313Z","repository":{"id":98886420,"uuid":"187568729","full_name":"loudKode/AllwayCloudSDK","owner":"loudKode","description":"AllwayCloud SDK for .NET","archived":false,"fork":false,"pushed_at":"2019-10-11T00:44:18.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-13T14:25:19.743Z","etag":null,"topics":["api","api-rest","cloud","downloader","net","sdk","sharp","uploader"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/loudKode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-05-20T04:40:29.000Z","updated_at":"2019-10-11T00:44:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"35e16f12-834f-44af-b75f-4e9e2e273fe0","html_url":"https://github.com/loudKode/AllwayCloudSDK","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/loudKode/AllwayCloudSDK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loudKode%2FAllwayCloudSDK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loudKode%2FAllwayCloudSDK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loudKode%2FAllwayCloudSDK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loudKode%2FAllwayCloudSDK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/loudKode","download_url":"https://codeload.github.com/loudKode/AllwayCloudSDK/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loudKode%2FAllwayCloudSDK/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267619030,"owners_count":24116481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","api-rest","cloud","downloader","net","sdk","sharp","uploader"],"created_at":"2025-01-20T10:15:04.410Z","updated_at":"2025-07-29T02:34:13.302Z","avatar_url":"https://github.com/loudKode.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"## AllwayCloudSDK ##\n\n`Download:`[https://github.com/loudKode/AllwayCloudSDK/releases](https://github.com/loudKode/AllwayCloudSDK/releases)\u003cbr\u003e\n`NuGet:`\n[![NuGet](https://img.shields.io/nuget/v/DeQmaTech.AllwayCloudSDK.svg?style=flat-square\u0026logo=nuget)](https://www.nuget.org/packages/DeQmaTech.AllwayCloudSDK)\u003cbr\u003e\n\n\n**Features**\n\n* Assemblies for .NET 4.5.2 and .NET Standard 2.0 and .NET Core 2.1\n* Just one external reference (Newtonsoft.Json)\n* Easy installation using NuGet\n* Upload/Download tracking support\n* Proxy Support\n* Upload/Download cancellation support\n\n# Functions:\n* UserInfo\n* List\n* CreateNewFolder\n* Upload\n* DeleteFile\n* DeleteFolder\n* GetDownloadUrl\n* GetMultipleDownloadUrl\n* DownloadFile\n* DownloadFileAsStream\n* RenameFile\n* RenameFolder\n\n\n# Example:\n**get token**\n```vb.net\n\n    Async Sub GetToken()\n        Dim tkn = Await AllwayCloudSDK.GetToken.Login(\"user\", \"pass\")\n        DataGridView1.Rows.Add(tkn.PROFILE.DisplayName, tkn.PROFILE.TotalStorage, tkn.PROFILE.UsedStorage, tkn.SID, tkn.UID)\n    End Sub\n```\n```vb.net\n    Sub SetClient()\n        Dim MyClient As AllwayCloudSDK.IClient = New AllwayCloudSDK.AClient(\"tkn.SID\", \"tkn.UID\", \"access token\")\n    End Sub\n```\n```vb.net\n    Sub SetClientWithOptions()\n        Dim Optians As New AllwayCloudSDK.ConnectionSettings With {.CloseConnection = True, .TimeOut = TimeSpan.FromMinutes(30), .Proxy = New AllwayCloudSDK.ProxyConfig With {.ProxyIP = \"172.0.0.0\", .ProxyPort = 80, .ProxyUsername = \"myname\", .ProxyPassword = \"myPass\", .SetProxy = True}}\n        Dim MyClient As AllwayCloudSDK.IClient = New AllwayCloudSDK.AClient(\"tkn.SID\", \"tkn.UID\", \"access token\", Optians)\n    End Sub\n```\n```vb.net\n    Async Sub ListMyFilesAndFolders()\n        Dim result = Await MyClient.List(\"path\", SortByEnum.dir)\n        For Each vid In result.FilesList\n            DataGridView1.Rows.Add(vid.name, vid.Path, vid.size, vid.ModifiedDate)\n        Next\n        For Each vid In result.FoldersList\n            DataGridView1.Rows.Add(vid.name, vid.Path, vid.size, vid.ModifiedDate)\n        Next\n    End Sub\n```\n```vb.net\n    Async Sub DeleteFileOrFolder()\n        Dim result = Await MyClient.DeleteFile(\"file path\")\n        Dim resultD = Await MyClient.DeleteFolder(\"folder path\")\n    End Sub\n```\n```vb.net\n    Async Sub CreateNewFolder()\n        Dim result = Await MyClient.CreateNewFolder(\"parent folder path\", \"new folder name\")\n    End Sub\n```\n```vb.net\n    Async Sub RenameFile()\n        Dim result = Await MyClient.RenameFile(\"file path\", \"new file name\")\n        Dim resultD = Await MyClient.RenameFolder(\"folder path\", \"new folder name\")\n    End Sub\n```\n```vb.net\n    Async Sub Upload_Local_WithProgressTracking()\n        Dim UploadCancellationToken As New Threading.CancellationTokenSource()\n        Dim _ReportCls As New Progress(Of AllwayCloudSDK.ReportStatus)(Sub(ReportClass As AllwayCloudSDK.ReportStatus)\n                                                                           Label1.Text = String.Format(\"{0}/{1}\", (ReportClass.BytesTransferred), (ReportClass.TotalBytes))\n                                                                           ProgressBar1.Value = CInt(ReportClass.ProgressPercentage)\n                                                                           Label2.Text = CStr(ReportClass.TextStatus)\n                                                                       End Sub)\n        Await MyClient.Upload(\"J:\\DB\\myvideo.mp4\", SentType.FilePath, \"myvideo.mp4\", \"tste/here\", _ReportCls, UploadCancellationToken.Token)\n    End Sub\n```\n```vb.net\n    Async Sub Download_File_WithProgressTracking()\n        Dim DownloadCancellationToken As New Threading.CancellationTokenSource()\n        Dim _ReportCls As New Progress(Of AllwayCloudSDK.ReportStatus)(Sub(ReportClass As AllwayCloudSDK.ReportStatus)\n                                                                           Label1.Text = String.Format(\"{0}/{1}\", (ReportClass.BytesTransferred), (ReportClass.TotalBytes))\n                                                                           ProgressBar1.Value = CInt(ReportClass.ProgressPercentage)\n                                                                           Label2.Text = CStr(ReportClass.TextStatus)\n                                                                       End Sub)\n        Dim FUrl = Await MyClient.GetDownloadUrl(\"file path\")\n        Await MyClient.DownloadFile(FUrl.DOWNLOAD_LINK, \"J:\\DB\\\", \"myvideo.mp4\", _ReportCls, DownloadCancellationToken.Token)\n    End Sub\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floudkode%2Fallwaycloudsdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floudkode%2Fallwaycloudsdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floudkode%2Fallwaycloudsdk/lists"}