C#获取文件路径、文件夹的路径

69 篇文章 13 订阅

有些时候在程序中我们需要用户自己去选择文件夹的路径或者文件的路径,那这时怎么做呢。

/// <summary>
        /// 获取文件路径
        /// </summary>
        /// <param name="HistoryPath">历史路径,可以在弹出选择路径前选定此路径,当然也可以不用设置</param>
        /// <returns></returns>
        private string GetFilePath(string HistoryPath)
        {
            try
            {
                string FilePath = "";
                OpenFileDialog dialog = new OpenFileDialog();
                dialog.Title = "请选择文件";
                dialog.Filter = "所有文件(*.*)|*.*";
                if (!string.IsNullOrWhiteSpace(HistoryPath)) dialog.FileName = HistoryPath.Trim();
                if (dialog.ShowDialog() == DialogResult.OK)
                {
                    FilePath = dialog.FileName;
                    if (string.IsNullOrWhiteSpace(FilePath))
                    {
                        MessageBox.Show(this, "文件路径不能为空", "提示");
                        return "";
                    }
                    else
                    {
                        return FilePath;
                    }
                }
                return FilePath;
            }
            catch (Exception e)
            {
                MessageBox.Show(e.Message + e.InnerException);
                return "";
            }
        }
        /// <summary>
        /// 获取文件夹路径
        /// </summary>
        /// <param name="HistoryPath">历史路径,可以在弹出选择路径前选定此路径,当然也可以不用设置</param>
        /// <returns></returns>
        private string GetFolderPath(string HistoryPath)
        {
            try
            {
                string FolderPath = "";
                FolderBrowserDialog Dialog = new FolderBrowserDialog();
                Dialog.Description = "请选择文件路径";
                if (!string.IsNullOrWhiteSpace(HistoryPath)) Dialog.SelectedPath = HistoryPath;
                //Dialog.RootFolder = Environment.SpecialFolder.Programs;
                if (Dialog.ShowDialog() == DialogResult.OK)
                {
                    FolderPath = Dialog.SelectedPath;
                    if (string.IsNullOrWhiteSpace(FolderPath))
                    {
                        MessageBox.Show(this, "文件夹路径不能为空", "提示");
                        return "";
                    }
                    else
                    {
                        return FolderPath;
                    }
                }
                return FolderPath;
            }
            catch (Exception e)
            {
                MessageBox.Show(e.Message + e.InnerException);
                return "";
            } 
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

香煎三文鱼

你的鼓励将是我创作的最大动力!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值