Chessar.LongPaths
1.1.6
See the version list below for details.
dotnet add package Chessar.LongPaths --version 1.1.6
NuGet\Install-Package Chessar.LongPaths -Version 1.1.6
<PackageReference Include="Chessar.LongPaths" Version="1.1.6" />
<PackageVersion Include="Chessar.LongPaths" Version="1.1.6" />
<PackageReference Include="Chessar.LongPaths" />
paket add Chessar.LongPaths --version 1.1.6
#r "nuget: Chessar.LongPaths, 1.1.6"
#:package Chessar.LongPaths@1.1.6
#addin nuget:?package=Chessar.LongPaths&version=1.1.6
#tool nuget:?package=Chessar.LongPaths&version=1.1.6
Chessar.LongPaths is a .NET library that allows you to enable long path support for the main System.IO classes:
FileStream, File, FileInfo, Directory, DirectoryInfo, ... (and others).
The library is based on replacing the internal NormalizePath and GetFullPathInternal functions from the static Path class. The replacement is done using JMP hooks (thanks to @wledfor2), in which the long path prefix \\?\ or \\?\UNC\ is added. Adding a prefix is done by calling the internal function Path.AddLongPathPrefix. Note also that the addition of such prefixes depends on the UseLegacyPathHandling and BlockLongPaths settings, which must necessarily be false (in the AppContextSwitchOverrides element).
In this case, your code does not need to directly add such prefixes to the paths.
Supported Platforms:
- .NET Framework 4.6.2+ (see .NET Blog)
How to use
- Add the Chessar.LongPaths NuGet package to the project.
- In the file
app.config(orweb.config), in the sectionruntime, add:
<configuration>
...
<runtime>
<AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false;Switch.System.IO.BlockLongPaths=false" />
</runtime>
...
- In the code (when you start the application or at the beginning of
Main) add code:
...
using static Chessar.Hooks;
...
PatchLongPaths();
- Usage
...
var fileInfo = new FileInfo(path);
var fullName = fileInfo.FullName; // with long path prefix
...
- At the end of the application:
RemoveLongPathsPatch();
See also Examples.
Notes
Next methods does not work for long paths, even if a prefix is added:
TODO
- Add long path support in methods from
Notes. - Make hooks more thread safe.
License
MIT - See LICENSE
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.8 | 1,897 | 10/25/2018 |
| 1.1.7 | 1,026 | 10/2/2018 |
| 1.1.7-rc003 | 820 | 10/2/2018 |
| 1.1.6 | 985 | 9/24/2018 |
| 1.1.5 | 970 | 9/23/2018 |
| 1.1.4 | 1,014 | 9/21/2018 |
| 1.1.3 | 984 | 9/20/2018 |
| 1.1.2 | 1,010 | 9/16/2018 |
| 1.1.1 | 1,005 | 9/12/2018 |
| 1.1.0 | 1,010 | 9/10/2018 |
| 1.0.9 | 1,046 | 9/4/2018 |
| 1.0.8 | 1,034 | 8/26/2018 |
| 1.0.7 | 1,189 | 7/30/2018 |
| 1.0.6 | 1,146 | 7/25/2018 |
| 1.0.5 | 1,148 | 7/19/2018 |
| 1.0.4 | 1,359 | 7/18/2018 |
| 1.0.3 | 1,385 | 7/18/2018 |
| 1.0.2 | 1,393 | 7/18/2018 |
| 1.0.1 | 1,396 | 7/12/2018 |
| 1.0.0 | 1,383 | 7/12/2018 |
| 1.0.0-rc005 | 1,022 | 7/5/2018 |
| 1.0.0-rc004 | 1,187 | 6/20/2018 |
| 1.0.0-rc003 | 1,201 | 6/18/2018 |
Added HandleProcessCorruptedStateExceptionsAttribute for some methods