-
Bug
-
Resolution: Fixed
-
P3
-
8.1ee, 1.1.6, 1.3.0, 1.4.0_01, 1.4.1_02, 1.4.2, 1.4.2_01
-
b19
-
generic, x86
-
generic, windows_nt, windows_2000, windows_xp
------------
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
Windows NT with an NTFS file system does not restrict the
total length of a path (unlike Windows 9x). You can create
a directory structure where the total path exceeds 255
characters. Unfortunately Java is unable to use any such file or
directory. The attached application illustrates this --- it attempts
to recurse through the structure. On encountering a file or directory
with path greater than 255 characters it will report that the object
is neither a file nor a directory. Any attempt to open such a file will also
fail.
To avoid this problem the native code should prepend \\?\ before any paths
which are longer than 255 characters when passing file names to the Windows
API. Actually you could always do this when the OS is NT.
7
To create a deep directory structure try this:
mkdir deep
cd deep
mkdir a
mkdir a\averylongnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
mkdir b
move a b\evenlongernnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
ren b a
mkdir b
move a b\evenlongernnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
ren b a
mkdir b
move a b\evenlongernnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
ren b a
repeat the last three lines as required
-------------------------------------
import java.io.File;
import java.io.IOException;
class RecurseFile
{
public static void main(String[] args)
{
for (int i=0; i<args.length; i++)
{
File f = new File(args[i]);
System.out.println("Scanning tree: "+f);
long size = sizeOf(f);
System.out.println("size="+size);
}
}
private static long sizeOf(File dir)
{
String[] names = dir.list();
if (names == null)
return 0;
long size=0;
for (int i=0; i<names.length; i++)
{
File f = new File(dir, names[i]);
if (f.getPath().length() > 255)
{
System.out.println("Long path: "+f);
}
if (f.isDirectory())
{
size += sizeOf(f);
}
else if (f.isFile())
{
size += f.length();
}
else
System.out.println("Neither file nor
directory: "+f);
}
return size;
}
}
(Review ID: 114827)
###@###.### 10/15/04 20:43 GMT
- duplicates
-
JDK-6222304 REGRESSION: create a file with long file names in Windows XP
-
- Closed
-
-
JDK-4165006 java.io: Folder path length and File path length limitations
-
- Closed
-
-
JDK-4306208 Very long file name with Chinese character can not be listed by File.list()
-
- Closed
-
-
JDK-4700220 Support for filenames longer than 259 characters on Windows
-
- Closed
-
-
JDK-4759207 Improve handling long full file name on Win32
-
- Closed
-
- relates to
-
JDK-6481955 Uncanonicalized absolute filepath with length 248-260 no longer works (win)
-
- Resolved
-
-
JDK-4751669 JDK has problems with super long filenames generated by jwsdp/jax-rpc
-
- Closed
-