All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bsh.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