001    /**
002     * Implements the Cold Fusion Function getfilefrompath
003     */
004    package railo.runtime.functions.system;
005    
006    
007    import railo.runtime.PageContext;
008    import railo.runtime.ext.function.Function;
009    
010    /**
011     * @deprecated replaced wih <code>#{@link railo.runtime.functions.file.GetFileFromPath}</code>
012     */
013    public final class GetFileFromPath implements Function {
014            public static String call(PageContext pc , String path) {
015                    return railo.runtime.functions.file.GetFileFromPath.call(pc, path);
016            }
017    }