Method getCanonicalFile()
Return type: java.io.File
Member of: java.io.File
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 File canonical = file.getCanonicalFile();
2 realFile = realFile.getCanonicalFile();
3 m_logFile = ( new File( "test/log/logfile.txt" ) ).getCanonicalFile();
4 return f.getCanonicalFile().toURL();
5 _tempfilef = File.createTempFile("org.mortbay.util.TempByteHolder-",".tmp",_temp_directory).getCanonicalFile();
6 this.addURL(file.getCanonicalFile().toURL());
7 File td = dir.getCanonicalFile();
8 File basedirFile = new File( basedir ).getCanonicalFile();
9 installationDir = file.getCanonicalFile().getParentFile().
10 f = f.getCanonicalFile ();
11 appendPathElement(new File(s).getCanonicalFile().toURL());
12 base, path ).getCanonicalFile().toURL();
13 final File file = archive.getCanonicalFile();
14 pathFile = pathFile.getCanonicalFile();
15 directory = directory.getCanonicalFile();
16 setRootDirectory(new File(".").getCanonicalFile());
17 config.homeDir = config.homeDir.getCanonicalFile();
18 File file = new File(path[i]).getCanonicalFile();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.