Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / Visual Basic
Tip/Trick

Dealing with long file names in VB.NET

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
23 May 2013CPOL 9.7K   192   1  
A class using Win32 Unicode calls to handle file names/paths longer than 254.

Introduction

This article explains using Win32 Unicode calls to handle long file names and paths.

Using the code

This code is basically untested. The FileEnumerator.vb class is straight from Microsoft. Win32Delcares.vb from Microsoft with the declarations changed to Unicode. ioWin32 has: CopyFile_Win32, DeleteFile_Win32, CreateDir_Win32, CopyDir_Win32, GetFilesIncludeSubDirs_Win32, GetDirsIncludeSubDirs_Win32, GetDirs_Win32, GetFiles_Win32, FileExists_Win32, DirExists_Win32, DeleteDir_Win32.

Dim sFiles() As String = IOWin32.UnicodeWin32.Functions.GetFiles_Win32("C:\temp\")
instead of
dim sFiles() as string = system.io.directory.getfiles("C:\temp\")

License

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


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --