6560349: REGRESSION :folder having ".lnk" in the name can not be opened by 5.0 and later versions
Reviewed-by: alexp
This commit is contained in:
parent
466eda6ee4
commit
e7c2dc0b7a
@ -1134,11 +1134,16 @@ public class BasicFileChooserUI extends FileChooserUI {
|
||||
// Traverse shortcuts on Windows
|
||||
if (dir != null && FilePane.usesShellFolder(fc)) {
|
||||
try {
|
||||
File linkedTo = ShellFolder.getShellFolder(dir).getLinkLocation();
|
||||
if (linkedTo != null && fc.isTraversable(linkedTo)) {
|
||||
dir = linkedTo;
|
||||
} else {
|
||||
return;
|
||||
ShellFolder shellFolder = ShellFolder.getShellFolder(dir);
|
||||
|
||||
if (shellFolder.isLink()) {
|
||||
File linkedTo = shellFolder.getLinkLocation();
|
||||
|
||||
if (linkedTo != null && fc.isTraversable(linkedTo)) {
|
||||
dir = linkedTo;
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
} catch (FileNotFoundException ex) {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user