/plugins/AntFarm/tags/AntFarm_1_4/antfarm/FileUtils.java

# · Java · 89 lines · 36 code · 9 blank · 44 comment · 5 complexity · 35c14ab1a1605dd44f2014469b0a95d2 MD5 · raw file

  1. /*
  2. * FileUtils.java - Plugin for running Ant builds from jEdit.
  3. * Copyright (C) 2001 Brian Knowles
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package antfarm;
  20. import java.io.File;
  21. import java.io.IOException;
  22. /**
  23. * @author Richard Wan
  24. * @created October 22, 2001
  25. */
  26. public class FileUtils
  27. {
  28. /**
  29. * tries to call <code>getCanonicalPath</code> and rollsover to <code>getAbsolutePath</code>
  30. * if that fails.
  31. *
  32. * @param file Description of Parameter
  33. * @return The AbsolutePath value
  34. */
  35. public static String getAbsolutePath( File file )
  36. {
  37. try {
  38. return file.getCanonicalPath();
  39. }
  40. catch ( IOException e ) {
  41. return file.getAbsolutePath();
  42. }
  43. }
  44. /**
  45. * mimics the jdk1.2 <code>getParentFile()</code>
  46. *
  47. * @param file Description of Parameter
  48. * @return The Parent value
  49. */
  50. public static File getParent( File file )
  51. {
  52. String parent = file.getParent();
  53. if ( parent == null ) {
  54. return null;
  55. }
  56. return new File( parent );
  57. }
  58. /**
  59. * Searches for the specified String starting from the specified <code>File</code>
  60. * and continuing upwards.
  61. *
  62. * @param directoryStart Description of Parameter
  63. * @param relativeFile Description of Parameter
  64. * @return the specified <code>File</code> if no file can be
  65. * found.
  66. */
  67. public static File findFile( File directoryStart, String relativeFile )
  68. {
  69. File current = new File( getAbsolutePath( directoryStart ) );
  70. File candidate;
  71. while ( current != null ) {
  72. candidate = new File( current, relativeFile );
  73. if ( candidate.exists() ) {
  74. return candidate;
  75. }
  76. current = getParent( current );
  77. }
  78. return directoryStart;
  79. }
  80. }