LongPathException问题解析
一、背景
当windows系统下使用System.IO命名空间下的方法,目录长度超过260个字符时,.net framework会抛出LongPathException。查阅相关资料,发现是微软为了安全和系统兼容性做出的限制。
原话是这么说的:The exception that is thrown when a path or file name is longer than the system-defined maximum length.
关于这个问题更详细的说明在这里:http://blogs.msdn.com/b/bclteam/archive/2007/02/13/long-paths-in-net-part-1-of-3-kim-hamilton.aspx
当然有过人已经中文翻译过来了: http://www.cnblogs.com/tongling/archive/2007/04/26/728224.html
LongPathException详细:http://msdn.microsoft.com/en-us/library/System.IO.PathTooLongException(v=vs.110).aspx
二、解决方案
方法一:用官方说的方法,用unicode的编码方式调用win32 API,并且在路径前面加前缀:\\?\。
这个链接是官方提供的解决办法: http://msdn.microsoft.com/en-us/library/930f87yf(vs.80).aspx
下面是包装了CreateDirectory和CreateFile。经过测试,可以正常使用。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using Microsoft.Win32.SafeHandles;
using System.IO; namespace STAr.Aquarius.Infrastructure.Library
{
public static class LongPathHelper
{
static class Win32Native
{
[StructLayout(LayoutKind.Sequential)]
public class SECURITY_ATTRIBUTES
{
public int nLength;
public IntPtr pSecurityDescriptor;
public int bInheritHandle;
} [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern bool CreateDirectory(string lpPathName, SECURITY_ATTRIBUTES lpSecurityAttributes); [DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern SafeFileHandle CreateFile(string lpFileName, int dwDesiredAccess, FileShare dwShareMode, SECURITY_ATTRIBUTES securityAttrs, FileMode dwCreationDisposition, int dwFlagsAndAttributes, IntPtr hTemplateFile);
} public static bool CreateDirectory(string path)
{
return Win32Native.CreateDirectory(String.Concat(@"\\?\", path), null);
}
public static SafeFileHandle CreateFile(string path)
{
SafeFileHandle handle = Win32Native.CreateFile(String.Concat(@"\\?\", path), (int)0x10000000, FileShare.None, null, FileMode.CreateNew, (int)0x00000080, IntPtr.Zero);
if (handle.IsInvalid)
{
throw new System.ComponentModel.Win32Exception();
}
return handle;
}
public static FileStream Open(string path, FileMode mode, FileAccess access)
{
SafeFileHandle handle = Win32Native.CreateFile(String.Concat(@"\\?\", path), (int)0x10000000, FileShare.None, null, mode, (int)0x00000080, IntPtr.Zero);
if (handle.IsInvalid)
{
throw new System.ComponentModel.Win32Exception();
}
return new FileStream(handle, access);
} }
}
其他使用到的API,自己在按照上面的方法包装即可。这种方法可以解决问题,就是太麻烦,因为所有用到的都需要自己动手包装,费力不讨好不说,PInvoke的调用写起来也比较麻烦,不知道大家有没有一种好的办法,可以高效的解决这个问题。
我只知道有一个pinvoke.net的网站上可以查询相关API的写法。有更好的方法,记得告诉我哦。
方法二、用第三方开源类库:alphafs
官方地址:http://alphafs.codeplex.com/
这个alphafs是对System.IO.FileStream的完整包装,几乎支持所有的System.IO.File,System.IO.Directory.System.IO.FileStream...
原话:AlphaFS is a .NET library providing more complete Win32 file system functionality to the .NET platform than the standard System.IO classes.
,还有一个好处是,他的方法名和System.IO完全一样。那我们改起来只需要修改引用不就可以了吗。
下面写的测试程序,经测,可以使用:(ps需要引用AlphaFS.dll这个dll.)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Alphaleonis.Win32.Filesystem; namespace LongPath
{
/// <summary>
/// http://stackoverflow.com/questions/12747132/pathtoolongexception-c-sharp-4-5
/// http://msdn.microsoft.com/en-us/library/930f87yf(vs.80).aspx
/// https://zetalongpaths.codeplex.com/
/// http://alphafs.codeplex.com/
/// Author:http://www.cnblogs.com/deepleo/
/// Email:2586662969@qq.com
/// </summary>
class Program
{
static void Main(string[] args)
{
var path = @"\\?\C:\Issues\20140710\20140710\20140710\20140710\20140710\20140710\20140710\20140710\20140710\20140710\20140710\20140710\20140710\ProblemOvernight\Data\[20140812_162155_][20140812_162155][20140812_162155][20140812_162155]\[20140812_162155_][20140812_162155][20140812_162155][20140812_162155]";
if (!Directory.Exists(path)) Directory.CreateDirectory(path);
Console.WriteLine("Path's Length is {0}", path.Length);
var newDir = string.Concat(path, @"\" + Guid.NewGuid().ToString());
Directory.CreateDirectory(newDir);
Console.WriteLine("New dir is created {0}", Directory.Exists(newDir));
var newFile = Path.Combine(newDir, Guid.NewGuid().ToString());
File.Create(newFile);
Console.WriteLine("New file is created {0}", File.Exists(newFile));
Console.ReadKey();
}
}
}
当然,最好的解决办法是,你能说服你的客户,不改,让他不要把路径搞那么长,算你牛逼!!!
下面附上完整测试程序源代码:http://files.cnblogs.com/deepleo/LongPath.rar
alphafs可以到官方网站上下载,也可以在我这里下载:http://files.cnblogs.com/deepleo/AlphaFS.rar
LongPathException问题解析的更多相关文章
- 【原】Android热更新开源项目Tinker源码解析系列之三:so热更新
本系列将从以下三个方面对Tinker进行源码解析: Android热更新开源项目Tinker源码解析系列之一:Dex热更新 Android热更新开源项目Tinker源码解析系列之二:资源文件热更新 A ...
- .NET Core中的认证管理解析
.NET Core中的认证管理解析 0x00 问题来源 在新建.NET Core的Web项目时选择“使用个人用户账户”就可以创建一个带有用户和权限管理的项目,已经准备好了用户注册.登录等很多页面,也可 ...
- Html Agility Pack 解析Html
Hello 好久不见 哈哈,今天给大家分享一个解析Html的类库 Html Agility Pack.这个适用于想获取某网页里面的部分内容.今天就拿我的Csdn的博客列表来举例. 打开页面 用Fir ...
- 【原】Android热更新开源项目Tinker源码解析系列之一:Dex热更新
[原]Android热更新开源项目Tinker源码解析系列之一:Dex热更新 Tinker是微信的第一个开源项目,主要用于安卓应用bug的热修复和功能的迭代. Tinker github地址:http ...
- 【原】Android热更新开源项目Tinker源码解析系列之二:资源文件热更新
上一篇文章介绍了Dex文件的热更新流程,本文将会分析Tinker中对资源文件的热更新流程. 同Dex,资源文件的热更新同样包括三个部分:资源补丁生成,资源补丁合成及资源补丁加载. 本系列将从以下三个方 ...
- 多线程爬坑之路-Thread和Runable源码解析之基本方法的运用实例
前面的文章:多线程爬坑之路-学习多线程需要来了解哪些东西?(concurrent并发包的数据结构和线程池,Locks锁,Atomic原子类) 多线程爬坑之路-Thread和Runable源码解析 前面 ...
- Asp.Net WebApi核心对象解析(下篇)
在接着写Asp.Net WebApi核心对象解析(下篇)之前,还是一如既往的扯扯淡,元旦刚过,整个人还是处于晕的状态,一大早就来处理系统BUG,简直是坑爹(好在没让我元旦赶过来该BUG),队友挖的坑, ...
- 【知识必备】内存泄漏全解析,从此拒绝ANR,让OOM远离你的身边,跟内存泄漏say byebye
一.写在前面 对于C++来说,内存泄漏就是new出来的对象没有delete,俗称野指针:而对于java来说,就是new出来的Object放在Heap上无法被GC回收:而这里就把我之前的一篇内存泄漏的总 ...
- SQL Server 数据加密功能解析
SQL Server 数据加密功能解析 转载自: 腾云阁 https://www.qcloud.com/community/article/194 数据加密是数据库被破解.物理介质被盗.备份被窃取的最 ...
随机推荐
- 使用FindBugs-IDEA插件找到代码中潜在的问题
另一篇使用文档,参照:https://www.cnblogs.com/huaxingtianxia/p/6703315.html 我们通常都会在APP上线之后,发现各种错误,尤其是空指针异常,这些错误 ...
- openstack中region、az、host aggregate、cell 概念
1. region 更像是一个地理上的概念,每个region有自己独立的endpoint,regions之间完全隔离,但是多个regions之间共享同一个keystone和dashboard.(注:目 ...
- hdu 3374 String Problem (kmp+最大最小表示法)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3374 题目大意:输出最大和最小的是从哪一位开始的,同时输出最小循环节的个数. 这里简单介绍对字符串最小 ...
- 使用QML创建第一个界面(转)
原文转自 https://blog.csdn.net/rl529014/article/details/51378307 在Qt编程中,我们可以使用纯C++代码,或C++和XML结合的方式来创建GUI ...
- python3 面向对象补充
f = People('egon',18,'male') 非函数hasattr # hasattr(f,'name')getattr # getattr(f,'name')setattr # seta ...
- win端git连接私服仓库+上传本地项目+从服务器下载文件到win
win端git连接私服仓库: 1.win端 检查c:/Users/用户/.ssh/目录下是否有config文件(!!!没有任何后缀名).如果没有则新建config文件,然后修改添加如下内容: Host ...
- Oracle基础 03 回滚表空间 undo
--查询默认的undo表空间 select name,value from v$parameterwhere name like '%undo%'; --创建 undotbs2 表空间 create ...
- 【bzoj4810】由乃的玉米田
lxl丧心病狂-- 首先允许离线的区间询问一看就是莫队.那么我们看下怎么莫队? 不会. "由乃题多半是不可做的."于是我看了下题解--好吧果然是bitset 用bitset维护当前 ...
- golang进行加密
crc64加密 package main import ( "fmt" "hash/crc64" ) func main(){ s:="打死udhan ...
- heightCharts改变图表内图标的样式:链接外部图片
series: [{ name: '东京', marker: { symbol: 'url(https://www.highcharts.com/demo/gfx/sun.png)' //链接 ...