我是靠谱客的博主 可耐酒窝,最近开发中收集的这篇文章主要介绍C#向共享文件夹上传及下载文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

//下载文件

public void DownLoadFile(string URL, string DIR)
        {
            WebClient client = new WebClient();
            string FileName = URL.Substring(URL.LastIndexOf("\") + 1);
            string PATH = DIR + FileName;
            try
            {
                WebRequest SC = WebRequest.Create(URL);
            }
            catch
            {
            }
            try
            {
                client.DownloadFile(URL, PATH);
            }
            catch
            {
            }
        }

//上传文件:要设置共享文件夹是否有创建的权限,否则无法上传文件

  public void UpLoadFile(string fileNamePath, string urlPath,string User,string Pwd)
        {
            string newFileName = fileNamePath.Substring(fileNamePath.LastIndexOf(@"") + 1);//取文件名称
            MessageBox.Show(newFileName);
            if (urlPath.EndsWith(@"") == false) urlPath = urlPath + @"";

            urlPath = urlPath + newFileName;

            WebClient myWebClient = new WebClient();
            NetworkCredential cread = new NetworkCredential(User, Pwd, "Domain");
            myWebClient.Credentials = cread;
            FileStream fs = new FileStream(fileNamePath, FileMode.Open, FileAccess.Read);
            BinaryReader r = new BinaryReader(fs);

            try
            {
                byte[] postArray = r.ReadBytes((int)fs.Length);
                Stream postStream = myWebClient.OpenWrite(urlPath);
                // postStream.m
                if (postStream.CanWrite)
                {
                    postStream.Write(postArray, 0, postArray.Length);
                    MessageBox.Show("文件上传成功!","提醒",MessageBoxButtons.OK,MessageBoxIcon.Information);
                }
                else
                {
                    MessageBox.Show("文件上传错误!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }

                postStream.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "错误");
            }

        }

 

最后

以上就是可耐酒窝为你收集整理的C#向共享文件夹上传及下载文件的全部内容,希望文章能够帮你解决C#向共享文件夹上传及下载文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部