javax.swing.filechooser
Class FileSystemView
The base class providing a view of the file system for use by the
JFileChooser
component.
File | createFileObject(File dir, String filename) - Creates a new file object with the given name in the specified directory.
|
File | createFileObject(String path) - Creates a new file object from the specified path.
|
protected File | createFileSystemRoot(File f) - DOCUMENT ME!
|
abstract File | createNewFolder(File containingDir) - Creates a new folder with a unique name in the specified directory and
returns a
File object representing the new directory.
|
File | getChild(File parent, String fileName) - DOCUMENT ME!
|
File | getDefaultDirectory() - Returns the default directory.
|
static FileSystemView | getFileSystemView() - Returns a default
FileSystemView appropriate for the platform.
|
File[] | getFiles(File dir, boolean useFileHiding) - Returns an array containing the files in the given directory.
|
File | getHomeDirectory() - Returns the home directory for the current user.
|
File | getParentDirectory(File f) - Returns the parent directory for the given file/directory.
|
File[] | getRoots() - Returns an array containing the file system roots.
|
String | getSystemDisplayName(File f) - Returns the name of a file as it would be displayed by the underlying
system.
|
Icon | getSystemIcon(File f) - Returns the icon that would be displayed for the given file by the
underlying system.
|
String | getSystemTypeDescription(File f) - Returns the type description of a file that would be displayed by the
underlying system.
|
boolean | isComputerNode(File dir) - DOCUMENT ME!
|
boolean | isDrive(File dir) - Returns
true if the given directory represents a disk
drive, and false otherwise.
|
boolean | isFileSystem(File f) - Returns
true if f is a file or directory, and
false otherwise.
|
boolean | isFileSystemRoot(File dir) - Returns
true if the given directory is a file system root,
and false otherwise.
|
boolean | isFloppyDrive(File dir) - Returns
true if the given directory represents a floppy
drive, and false otherwise.
|
boolean | isHiddenFile(File f) - Returns
true if the given file is hidden, and
false otherwise.
|
boolean | isParent(File folder, File file) - Returns
true if folder is the parent of
file , and false otherwise.
|
boolean | isRoot(File f) - DOCUMENT ME!
|
Boolean | isTraversable(File f) - Returns
true if the file is traversable, and
false otherwise.
|
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
getFiles
public File[] getFiles(File dir,
boolean useFileHiding)
Returns an array containing the files in the given directory. The
useFileHiding
controls whether or not hidden files are
included in the result.
dir
- the directory (if null
useFileHiding
- a flag that controls whether or not hidden files are
included in the result (pass in true
to
exclude hidden files).
- The files in the given directory (possibly
null
).
getRoots
public File[] getRoots()
Returns an array containing the file system roots. On Unix-like platforms,
this array will contain just a single item ("/"), while other platforms
may return multiple roots.
This method is implemented to return null
, subclasses must
override this method.
- An array containing the file system roots.
isDrive
public boolean isDrive(File dir)
Returns true
if the given directory represents a disk
drive, and false
otherwise. This default implementation
always returns false
.
isParent
public boolean isParent(File folder,
File file)
Returns true
if folder
is the parent of
file
, and false
otherwise.
folder
- the folder (null
not permitted).file
- the file (null
not permitted).
true
if folder
is the parent of
file
, and false
otherwise.
isTraversable
public Boolean isTraversable(File f)
Returns true
if the file is traversable, and
false
otherwise. Here, all directories are considered
traversable, and files are considered non-traversable.
f
- the file or directory (null
not permitted).
true
if the file is traversable, and
false
otherwise.
FileSystemView.java --
Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.