bsh.util.commands.pathToFile.bsh Maven / Gradle / Ivy
The newest version!
/**
Create a File object corresponding to the specified file path name, taking
into account the bsh current working directory (bsh.cwd)
*/
bsh.help.pathToFile = "usage: File pathToFile( String )";
File pathToFile( String filename ) {
return this.interpreter.pathToFile( filename );
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy