AwsInspector\Model\Ec2\Instance::linkExists PHP 메소드

linkExists() 공개 메소드

public linkExists ( $file, $asUser = null )
    public function linkExists($file, $asUser = null)
    {
        $result = $this->exec('test -l ' . escapeshellarg($file), $asUser);
        return $result['returnVar'] == 0;
    }