Click here to Skip to main content
Click here to Skip to main content

Zeta Long Paths

By , 9 Aug 2012
 

Introduction 

This article describes a library that provides several classes and functions to perform basic functions on file paths and folder paths that are longer than the "MAX_PATH" limit of 260 characters. 

Background

All .NET functions I came across that access the file system are limited to file paths and folder paths with less than 260 characters. This includes most (all?) of the classes in the System.IO namespace like e.g. the System.IO.FileInfo class.

Since I was in the need to actually access paths with more than 260 characters, I searched for a solution. Fortunately a solution exists; basically you have to P/Invoke Win32 functions that allow a special syntax to prefix a file and allow it then to be much longer than the 260 characters (about 32,000 characters).

The Library

So I started writing a very thin wrapper for the functions I required to work on long file names.

These resources helped me finding more: 

I started by using several functions from the BCL Team blog postings and added the functions they did not cover but which I needed in my project. 

Currently there are the following classes: 

  • ZlpFileInfo - A class similar to System.IO.FileInfo that wraps functions to work on file paths
  • ZlpDirectoryInfo - A class similar to System.IO.DirectoryInfo that wraps functions to work on folder paths 
  • ZlpIOHelper - A set of static functions to provide similar features as the ZlpFileInfo and ZlpDirectoryInfo class but in a static context 
  • ZlpPathHelper - A set of static functions similar to System.IO.Path that work on paths

Using the Code 

The project contains some unit tests to show basic functions. 

If you are familiar with the System.IO namespace, you should be able to use the classes of the library.

For example, to get all files in a given folder path, use the following snippet:

var folderPath = new ZlpDirectoryInfo( @"C:\My\Long\Folder\Path" );

foreach ( var filePath in folderPath.GetFiles() )
{
    Console.Write( "File {0} has a size of {1}",
        filePath.FullName,
        filePath.Length );
}

When using the functions, please do not encode the paths with the long path syntax (like e.g. \\?\C:\my\path) but pass them as normal paths like c:\my\path or \\myserver\myshare\my\path. The library itself decides whether a path has to be converted and does it automatically. 

Summary   

This article quickly introduced a library to deal with long file names when accessing files and folders. 

Please note that the library currently is limited in the number of provided functions.

I will add more functions in the future, just tell me which you require, below in the comments section of this article. 

History 

  • 2012-08-10 - Added several new methods.
  • 2011-10-10 - Fixed an error in ZlpFileInfo.Exists.
  • 2011-03-30 - Fixed a resource leak.
  • 2011-03-27 - Fixed an issue with WIN32_FIND_DATA.
  • 2011-02-22 - Added more functions.  
  • 2011-01-31 - Added functions MoveFile and MoveDirectory
  • 2010-03-24 - Added functions to get file owner, creation time, last access time, last write time.
  • 2010-02-16 - Maintenance release. 
  • 2009-11-25 - First release to CodeProject.com.  

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Uwe Keim
Chief Technology Officer Zeta Producer Desktop CMS
Germany Germany
Member
Uwe does programming since 1989 with experiences in Assembler, C++, MFC and lots of web- and database stuff and now uses ASP.NET and C# extensively, too. He has also teached programming to students at the local university.
 
In his free time, he does climbing, running and mountain biking. Recently he became a father of a cute boy.
 
Some cool, free software from us:
 
Free Test Management Software - Intuitive, competitive, Test Plans. Download now!  
Homepage erstellen - Intuitive, very easy to use. Download now!  
Send large Files online for free by Email
Some random fun stuff in German

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberMauricevh24 Jan '13 - 1:21 
GeneralMy vote of 5memberHope W Lam9 Jan '13 - 4:27 
BugPInvokeHelper.MAX_PATH bugmemberdrussilla5 Dec '12 - 3:51 
GeneralMy vote of 5memberJF201510 Aug '12 - 5:12 
Suggestionx64 SupportmemberRichard Y9 Apr '12 - 12:07 
GeneralRe: x64 SupportsitebuilderUwe Keim9 Apr '12 - 18:23 
Thanks, Richard. Is there a portable way of doing this or do I have to detect the bitness and switch-case accordingly?
Wollen Sie ganz einfach Ihre eigene Homepage erstellen, ohne HTML-Kenntnisse, einfach, professionell und mit viel Freude? Probieren Sie unser Desktop Content Management System (CMS) Zeta Producer für Windows aus. Komplett mit eigenem Shop, Gästebuch, Weblog, Bildergalerien, Integration von YouTube-Videos. Wir haben eine aktive Anwender-Community, schnellen Support, sympathische Support-Mitarbeiter.

GeneralRe: x64 SupportmemberZac Greve1 Jul '12 - 8:21 
GeneralRe: x64 Supportmembermrdance6 Aug '12 - 22:51 
GeneralRe: x64 SupportsitebuilderUwe Keim9 Aug '12 - 18:59 
QuestionZlpDirectoryInfomemberMember 860610429 Jan '12 - 21:26 
Questionadd a column for file/path length in windows explorermemberMember 435848925 Aug '11 - 11:13 
GeneralMy vote of 5memberveki-peki27 Mar '11 - 8:33 
GeneralRe: My vote of 5sitebuilderUwe Keim27 Mar '11 - 8:34 
GeneralBug: ZlpIOHelper.GetFileLastWriteTime()memberHorscht200526 Mar '11 - 13:15 
GeneralRe: Bug: ZlpIOHelper.GetFileLastWriteTime()sitebuilderUwe Keim26 Mar '11 - 18:41 
GeneralRe: Bug: ZlpIOHelper.GetFileLastWriteTime()memberHorscht200527 Mar '11 - 10:33 
GeneralRe: Bug: ZlpIOHelper.GetFileLastWriteTime()sitebuilderUwe Keim30 Mar '11 - 9:04 
GeneralRe: Bug: ZlpIOHelper.GetFileLastWriteTime()memberHorscht200531 Mar '11 - 5:28 
GeneralThe system cannot find the file specifiedmemberwehadfun22 Mar '11 - 18:03 
GeneralRe: The system cannot find the file specifiedsitebuilderUwe Keim22 Mar '11 - 19:53 
GeneralRe: The system cannot find the file specifiedmemberwehadfun23 Mar '11 - 17:51 
GeneralRe: The system cannot find the file specifiedsitebuilderUwe Keim23 Mar '11 - 19:58 
GeneralRecursive Directory DeletingmemberMike Fed23 Feb '11 - 6:33 
GeneralRe: Recursive Directory DeletingsitebuilderUwe Keim23 Feb '11 - 7:03 
GeneralRe: Recursive Directory DeletingmemberMike Fed23 Feb '11 - 7:33 
GeneralMy vote of 5memberJV999923 Feb '11 - 0:10 
GeneralMy vote of 5memberSledgeHammer0122 Feb '11 - 11:10 
QuestionNew feature requiredmemberHorscht200522 Feb '11 - 9:53 
AnswerRe: New feature requiredsitebuilderUwe Keim22 Feb '11 - 10:08 
GeneralRe: New feature requiredmemberHorscht200522 Feb '11 - 10:12 
GeneralRe: New feature requiredmemberMarcus Kramer22 Feb '11 - 10:33 
GeneralRe: New feature requiredsitebuilderUwe Keim22 Feb '11 - 10:40 
GeneralMy vote of 4memberR. Hoffmann8 Feb '11 - 8:36 
GeneralRe: My vote of 4sitebuilderUwe Keim22 Feb '11 - 10:08 
GeneralZeta Long Paths...new functionality requestedmembermichaeldjackson20 Mar '10 - 13:58 
GeneralRe: Zeta Long Paths...new functionality requestedmvpUwe Keim21 Mar '10 - 20:10 
GeneralRe: Zeta Long Paths...new functionality requestedmvpUwe Keim23 Mar '10 - 19:15 
GeneralRe: Zeta Long Paths...new functionality requestedmembermichaeldjackson24 Mar '10 - 2:19 
GeneralAdditionsmembermichaeldjackson22 Feb '10 - 13:47 
GeneralRe: AdditionsmvpUwe Keim22 Feb '10 - 18:33 
Generalhttp://alphafs.codeplex.com/sitebuilderUwe Keim5 Jan '10 - 1:57 
GeneralLong awaitedmemberreisenklaus26 Nov '09 - 10:57 
GeneralRe: Long awaitedsitebuilderUwe Keim26 Nov '09 - 11:07 
GeneralAdditional featuresmemberhardsoft25 Nov '09 - 8:32 
GeneralRe: Additional featuressitebuilderUwe Keim25 Nov '09 - 8:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 10 Aug 2012
Article Copyright 2009 by Uwe Keim
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid