c# 实现文件上传下载功能的实例代码
作者:少年。 时间:2021-12-10 15:00:30
NuGet 安装SqlSugar
1.Model文件下新建 DbContext 类
public class DbContext
{
public DbContext()
{
Db = new SqlSugarClient(new ConnectionConfig()
{
ConnectionString = "server=localhost;uid=root;pwd=woshishui;database=test",
DbType = DbType.MySql,
InitKeyType = InitKeyType.Attribute,//从特性读取主键和自增列信息
IsAutoCloseConnection = true,//开启自动释放模式和EF原理一样我就不多解释了
});
//调式代码 用来打印SQL
Db.Aop.OnLogExecuting = (sql, pars) =>
{
Console.WriteLine(sql + "\r\n" +
Db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
Console.WriteLine();
};
}
//注意:不能写成静态的,不能写成静态的
public SqlSugarClient Db;//用来处理事务多表查询和复杂的操作
public SimpleClient<uploading> uploadingdb { get { return new SimpleClient<uploading>(Db); } }//用来处理Student表的常用操作
}
2.建uploading实体类
[SugarTable("uploading")]
public class uploading
{
//指定主键和自增列,当然数据库中也要设置主键和自增列才会有效
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
public string name { get; set; }
public string path { get; set; }
}
3.Manager文件下建UploadingManager
class UploadingManager : DbContext
{
public List<uploading> Query()
{
try
{
List<uploading> data = Db.Queryable<uploading>()
.Select(f => new uploading
{
name = f.name,
path = f.path
})
.ToList();
return data;
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}
public List<string> GetName(string name)
{
List<string> data = Db.Queryable<uploading>()
.Where(w=>w.name== name)
.Select(f => f.path)
.ToList();
return data;
}
}
窗体加载Form1_Load
1.读取到数据库字段name并赋值
private void Form1_Load(object sender, EventArgs e)
{
List<uploading> data = uploading.Query();
foreach (var data1 in data)
{
comboBox1.Items.Add(data1.name);
}
comboBox1.SelectedIndex = 0;
}
2.comboBox事件触发条件查询到上传的path
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
List<string> data = uploading.GetName(comboBox1.Text);
for (int i = 0; i < data.Count; i++)
{
textBox1.Text = data[0];
}
}
3.上传事件触发
private void Button1_Click(object sender, EventArgs e)
{
string path = textBox1.Text;
CopyDirs(textBox3.Text,
path);
}
private void CopyDirs(string srcPath, string aimPath)
{
try
{
// 检查目标目录是否以目录分割字符结束如果不是则添加
if (aimPath[aimPath.Length - 1] != System.IO.Path.DirectorySeparatorChar)
{
aimPath += System.IO.Path.DirectorySeparatorChar;
}
// 判断目标目录是否存在如果不存在则新建
if (!System.IO.Directory.Exists(aimPath))
{
System.IO.Directory.CreateDirectory(aimPath);
}
// 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
// 如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法
// string[] fileList = Directory.GetFiles(srcPath);
string[] fileList = System.IO.Directory.GetFileSystemEntries(srcPath);
// 遍历所有的文件和目录
foreach (string file in fileList)
{
// 先当作目录处理如果存在这个目录就递归Copy该目录下面的文件
if (System.IO.Directory.Exists(file))
{
CopyDir(file, aimPath + System.IO.Path.GetFileName(file));
DisplaylistboxMsg("上传成功");
}
// 否则直接Copy文件
else
{
System.IO.File.Copy(file, aimPath + System.IO.Path.GetFileName(file), true);
DisplaylistboxMsg("上传成功");
}
}
}
catch (Exception e)
{
DisplaylistboxMsg("上传失败" + e.Message);
}
}
4.下载事件触发
private void Button2_Click(object sender, EventArgs e)
{
CopyDir(@"\\10.55.2.3\mech_production_line_sharing\Test\" + textBox2.Text, textBox4.Text);
}
private void CopyDir(string srcPath, string aimPath)
{
// 检查目标目录是否以目录分割字符结束如果不是则添加
if (aimPath[aimPath.Length - 1] != System.IO.Path.DirectorySeparatorChar)
{
aimPath += System.IO.Path.DirectorySeparatorChar;
}
// 判断目标目录是否存在如果不存在则新建
if (!System.IO.Directory.Exists(aimPath))
{
System.IO.Directory.CreateDirectory(aimPath);
}
// 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
// 如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法
// string[] fileList = Directory.GetFiles(srcPath);
string[] fileList = System.IO.Directory.GetFileSystemEntries(srcPath);
// 遍历所有的文件和目录
foreach (string file in fileList)
{
// 先当作目录处理如果存在这个目录就递归Copy该目录下面的文件
if (System.IO.Directory.Exists(file))
{
CopyDir(file, aimPath + System.IO.Path.GetFileName(file));
DisplaylistboxMsg("下载成功");
}
// 否则直接Copy文件
else
{
System.IO.File.Copy(file, aimPath + System.IO.Path.GetFileName(file), true);
DisplaylistboxMsg("下载成功");
}
}
}
来源:https://www.cnblogs.com/ouyangkai/p/12484260.html
标签:c#,文件,上传,下载
0
投稿
猜你喜欢
c#实现ini文件读写类分享
2022-08-31 09:47:48
Java实现斗地主小游戏
2021-08-05 19:50:17
Android刮刮卡效果实现代码
2023-08-24 01:29:58
Android实现View滑动的6种方式
2023-11-29 20:47:15
Android仿微信QQ设置图形头像裁剪功能
2022-06-21 10:12:25
eclipse实现DSA数字签名
2023-08-24 19:11:37
C#实现控制Windows系统关机、重启和注销的方法
2023-07-24 17:15:05
Spring Boot插件spring tool suite安装及使用详解
2021-12-15 03:29:23
Java并发编程之线程创建介绍
2021-11-14 13:55:40
C#中的那些警告该如何去除(完全去除C#警告)
2023-09-07 20:55:53
C#简单数字图像处理程序
2022-03-07 05:16:31
python gstreamer实现视频快进/快退/循环播放功能
2022-07-06 10:09:20
C#如何访问共享文件夹或者磁盘
2023-11-08 09:43:44
mybatis-plus 如何使用雪花算法ID生成策略
2023-04-06 07:15:38
Java一个简单的红包生成算法
2023-12-12 10:56:50
Android编程实现图片放大缩小功能ZoomControls控件用法实例
2022-07-16 22:01:11
C++详细讲解继承与虚继承实现
2022-10-25 18:33:49
java Servlet 实现动态验证码图片示例
2021-07-14 15:14:28
轻量级声明式的Http库——Feign的独立使用
2022-06-05 04:36:19
Java树形结构数据生成导出excel文件方法记录
2021-08-20 05:19:18