Esempio n. 1
0
        /// <summary>
        /// Downloads to \My Documents
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnDownload_Click(object sender, EventArgs e)
        {
            System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart(delegate()
            {
                bool isSuccessful = true;

                SharefileCCP sharefile           = new SharefileCCP();
                SharefileCCP.HRESULT loginStatus = sharefile.Authenticate("citrix", "sharefile.com", username, "Apps3cur3");

                if (loginStatus == SharefileCCP.HRESULT.S_OK)
                {
                    List <object> items = GetUploadedFiles();

                    foreach (object filename in items)
                    {
                        //if (!sharefile.FileDownload(sharefile.GetItemId((string)filename, SharefileCCP.ITEM_TYPE.FILE), DOWNLOADS_FOLDER + (string)filename))
                        sharefile.FileDownload(sharefile.GetItemId(@"/" + username + @"/" + UPLOADS_FOLDER, (string)filename, SharefileCCP.ITEM_TYPE.FILE), DOWNLOADS_FOLDER + (string)filename);
                    }

                    MessageBox.Show(isSuccessful ? "Download successful." : "Download failed.\nPlease try again later.");
                }
                else if (loginStatus == SharefileCCP.HRESULT.E_FAIL)
                {
                    FunctionalityLibrary.UserInterfaces.ErrorForm frm = new FunctionalityLibrary.UserInterfaces.ErrorForm()
                    {
                        Message   = sharefile.FriendlyError,
                        Technical = sharefile.TechnicalError,
                    };
                    frm.ShowDialog(this);
                }
            }));
            thread.Start();
        }
Esempio n. 2
0
        public static void Main(string[] args)
        {
            SharefileCCP sample = new SharefileCCP();
            Dictionary <string, object> optionalParameters = new Dictionary <string, object>();

            SharefileCCP.HRESULT loginStatus = sample.Authenticate("mysubdomain", "sharefile.com", "*****@*****.**", "mypassword");
            if (loginStatus == HRESULT.S_OK)
            {
                sample.FolderList("/MyFolder");
            }
        }
Esempio n. 3
0
        private void btnUpload_Click(object sender, EventArgs e)
        {
            System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart(delegate()
            {
                SharefileCCP sharefile           = new SharefileCCP();
                SharefileCCP.HRESULT loginStatus = sharefile.Authenticate("citrix", "sharefile.com", "thing", "Apps3cur3");

                if (loginStatus == SharefileCCP.HRESULT.S_OK)
                {
                    string folderId = string.Empty;

                    //if (!sharefile.DoesFolderExist(UPLOADS_FOLDER))
                    if (!sharefile.DoesFolderExist(@"/" + username + @"/", UPLOADS_FOLDER))
                    {
                        folderId = sharefile.CreateFolder(username, UPLOADS_FOLDER);
                    }
                    else
                    {
                        //folderId = sharefile.GetItemId(UPLOADS_FOLDER, SharefileCCP.ITEM_TYPE.FOLDER);
                        folderId = sharefile.GetItemId(@"/" + username + @"/", UPLOADS_FOLDER, SharefileCCP.ITEM_TYPE.FOLDER);
                    }
                    Dictionary <string, object> optionalParams = new Dictionary <string, object>();
                    optionalParams.Add("folderid", folderId);

                    bool uploadSuccessful = true;

                    List <object> items = GetFilesToUpload();

                    foreach (object listItem in items)
                    {
                        string retVal = sharefile.FileUpload((string)listItem, optionalParams);
                        if (!string.IsNullOrEmpty(retVal) && !retVal.Contains("OK:"))
                        {
                            uploadSuccessful = false;
                            break;
                        }
                    }

                    MessageBox.Show(uploadSuccessful ? "Upload successful." : "Upload failed.\nPlease try again later.");
                }
            }));
            thread.Start();
        }
Esempio n. 4
0
        private void PopulateUploadedFilesList()
        {
            lstUploadedFiles.Items.Clear();

            SharefileCCP sharefile = new SharefileCCP();

            SharefileCCP.HRESULT loginStatus = sharefile.Authenticate("citrix1", "sharefile.com", username, "Apps3cur3");

            if (loginStatus == SharefileCCP.HRESULT.S_OK)
            {
                List <string> files = sharefile.FolderList(@"/" + username + @"/" + UPLOADS_FOLDER);

                foreach (string file in files)
                {
                    lstUploadedFiles.Items.Add(file);
                }
            }
            else
            {
                FunctionalityLibrary.UserInterfaces.ErrorForm.Show(sharefile.FriendlyError, sharefile.TechnicalError);
            }
        }