home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Comunicatii / advwebrank / awr.msi / disk1.cab / bsh_1.2b6.jar / bsh / commands / pathToFile.bsh < prev    next >
Encoding:
Text File  |  2002-05-26  |  289 b   |  11 lines

  1. /**
  2.     Create a File object corresponding to the specified file path name, taking
  3.     into account the bsh current working directory (bsh.cwd)
  4. */
  5.  
  6. bsh.help.pathToFile = "usage: File pathToFile( String )";
  7.  
  8. File pathToFile( String filename ) {
  9.     return this.interpreter.pathToFile( filename );
  10. }
  11.