当前位置:
首页 > Python基础教程 >
-
C#教程之C# 读写网上邻居中的共享文件
读写网上邻居共享的文件夹,和操作本地文件夹类似,只要有权限读取写入即可。
分为以下2步:
1.打通共享文件夹权限
2.操作文件
打通共享文件夹权限
1 /// <summary> 2 /// 连接共享文件 3 /// </summary> 4 /// <param name="path">共享文件地址</param> 5 /// <param name="userName">用户名</param> 6 /// <param name="passWord">密码</param> 7 /// <returns>true:连接成功 false:连接失败</returns> 8 public static bool ConnectState(string path, string userName, string passWord) 9 { 10 bool Flag = false; 11 Process proc = new Process(); 12 try 13 { 14 proc.StartInfo.FileName = "cmd.exe"; 15 proc.StartInfo.UseShellExecute = false; 16 proc.StartInfo.RedirectStandardInput = true; 17 proc.StartInfo.RedirectStandardOutput = true; 18 proc.StartInfo.RedirectStandardError = true; 19 proc.StartInfo.CreateNoWindow = true; 20 proc.Start(); 21 string dosLine = @"net use " + path + " /User:" + userName + " " + passWord + " /PERSISTENT:YES"; 22 proc.StandardInput.WriteLine(dosLine); 23 proc.StandardInput.WriteLine("exit"); 24 while (!proc.HasExited) 25 { 26 proc.WaitForExit(1000); 27 } 28 string errormsg = proc.StandardError.ReadToEnd(); 29 proc.StandardError.Close(); 30 if (string.IsNullOrEmpty(errormsg)) 31 { 32 Flag = true; 33 } 34 else 35 { 36 throw new Exception(errormsg); 37 } 38 } 39 catch (Exception ex) 40 { 41 throw ex; 42 } 43 finally 44 { 45 proc.Close(); 46 proc.Dispose(); 47 } 48 49 return Flag; 50 }
创建文件夹
1 DirectoryInfo dirInfo = new DirectoryInfo("\\WIN-R3377JMR1LG\ShareFolder"); 2 if (dirInfo.Exists == false) 3 { 4 dirInfo.Create(); 5 }
上传文件
1 /// <summary> 2 /// 上传文件到共享文件夹 3 /// </summary> 4 /// <param name="sourceFile">本地文件</param> 5 /// <param name="remoteFile">远程文件</param> 6 public static void UpLoadFile(string sourceFile, string remoteFile) 7 { 8 //判断文件夹是否存在 ->不存在则创建 9 var targetFolder = Path.GetDirectoryName(remoteFile); 10 DirectoryInfo theFolder = new DirectoryInfo(targetFolder); 11 if (theFolder.Exists == false) 12 { 13 theFolder.Create(); 14 } 15 16 try 17 { 18 WebClient myWebClient = new WebClient(); 19 NetworkCredential cread = new NetworkCredential(); 20 myWebClient.Credentials = cread; 21 22 using (FileStream fs = new FileStream(sourceFile, FileMode.Open, FileAccess.Read)) 23 { 24 using (BinaryReader r = new BinaryReader(fs)) 25 { 26 byte[] postArray = r.ReadBytes((int)fs.Length); 27 using (Stream postStream = myWebClient.OpenWrite(remoteFile)) 28 { 29 if (postStream.CanWrite == false) 30 { 31 LogUtil.Error($"{remoteFile} 文件不允许写入~"); 32 return; 33 } 34 35 postStream.Write(postArray, 0, postArray.Length); 36 } 37 } 38 } 39 } 40 catch (Exception ex) 41 { 42 string errMsg = $"{remoteFile} ex:{ex.ToString()}"; 43 LogUtil.Error(errMsg); 44 Console.WriteLine(errMsg); 45 } 46 }
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式