MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b1536/lidiapaul.com.au/wp-content/plugins/loco-translate/src/fs/
File Upload :
Current < : /hermes/bosweb/b1536/lidiapaul.com.au/wp-content/plugins/loco-translate/src/fs/Link.php

<?php
/**
 * 
 */
class Loco_fs_Link extends Loco_fs_File {
    
    
    /**
     * @return Loco_fs_File
     */
    public function resolve(){

        $path = $this->getPath();

        if( $real = realpath($path) ){
            if( is_dir($path) ){
                return new Loco_fs_Directory($real);
            }
            return new Loco_fs_File($real);
        }
        
        // else fail
        return null;
    }    
    
}