博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 打开网络文件(UNC)
阅读量:6084 次
发布时间:2019-06-20

本文共 905 字,大约阅读时间需要 3 分钟。

比如一个   UNC 路径为   

  string path = @"\\WUMI_LIU_PC1\Users\1.pdf";

 string[] readText = File.ReadAllLines(path, Encoding.UTF8);  //这样就可以读取到  path 路径下的文件了。

这是在C# 中的使用。

按照这个思路, 在 htm 中 也这么使用这个路径。

发现 打不开这个路径的文件。

 

后来通过调试,发现在C# 中, string path = @"\\WUMI_LIU_PC1\Users\1.pdf";

 其实是 \\\\WUMI_LIU_PC1\\Users\\1.pdf  前面使用四个斜杠的。

 msdn中这么描述的:

In members that accept a path, the path can refer to a file or just a directory. The specified path can also refer to a relative path or a Universal Naming Convention (UNC) path for a server and share name. For example, all the following are acceptable paths:

  • "c:\\MyDir\\MyFile.txt" in C#, or "c:\MyDir\MyFile.txt" in Visual Basic.

  • "c:\\MyDir" in C#, or "c:\MyDir" in Visual Basic.

  • "MyDir\\MySubdir" in C#, or "MyDir\MySubDir" in Visual Basic.

  • "\\\\MyServer\\MyShare" in C#, or "\\MyServer\MyShare" in Visual Basic.

地址:

 

 

 

 

转载于:https://www.cnblogs.com/niannian/archive/2012/12/14/2877372.html

你可能感兴趣的文章
linux下查看各硬件型号
查看>>
epoll的lt和et模式的实验
查看>>
Flux OOM实例
查看>>
07-k8s-dns
查看>>
Android 中 ListView 分页加载数据
查看>>
oracle启动报错:ORA-00845: MEMORY_TARGET not supported on this system
查看>>
Go方法
查看>>
Dapper丶DapperExtention,以及AbpDapper之间的关系,
查看>>
搞IT的同学们,你们在哪个等级__那些年发过的帖子
查看>>
且谈语音搜索
查看>>
MySQL数据库导入导出常用命令
查看>>
低版本Samba无法挂载
查看>>
Telegraf+Influxdb+Grafana构建监控平台
查看>>
使用excel 展现数据库内容
查看>>
C#方法拓展
查看>>
MySql.Data.dll的版本
查看>>
Linux系统磁盘管理
查看>>
hdu 2191 (多重背包+二进制优化)
查看>>
home.php
查看>>
neo4j---删除关系和节点
查看>>