将VB.net程序连接到Dropbox

时间:2015-05-20 13:05:59

标签: vb.net dropbox owncloud

我正在写一个VB.net程序,但我希望它能链接到Dropbox。我有从Dropbox每天访问的应用程序表单和报价等,我想更改它,以便员工通过Windows应用程序访问它,但也可以全局访问。有什么建议吗?

1 个答案:

答案 0 :(得分:2)

如果您想以正确的方式链接到Dropbox"",请查看SharpBox

一个更简单但更粗糙的解决方案是要求用户在他们希望运行您的应用程序的任何PC上安装Dropbox。

Imports System.IO
Private Sub form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Dim filePath As String = Environ("USERPROFILE") & "\dropbox\"
    If Directory.Exists(filePath) Then
        'Program may proceed
    Else
        MsgBox("You must install Dropbox on this computer in order for this application to function properly.")
        End
    End If
End Sub

请注意,如果有人在安装了Dropbox但使用的用户名不同于程序访问权限的计算机上使用您的程序,则应测试Dropbox中的特定文件或文件夹。