Chumper\Zipper\Zipper::getCurrentFolderPath PHP Method

getCurrentFolderPath() public method

Get the current internal folder pointer
public getCurrentFolderPath ( ) : string
return string
    public function getCurrentFolderPath()
    {
        return $this->currentFolder;
    }

Usage Example

Beispiel #1
0
 public function testNavigationFolderAndHome()
 {
     $this->archive->folder('foo/bar');
     $this->assertEquals('foo/bar', $this->archive->getCurrentFolderPath());
     //----
     $this->file->shouldReceive('isFile')->with('foo')->andReturn(true);
     $this->archive->add('foo');
     $this->assertEquals('foo/bar/foo', $this->archive->getFileContent('foo/bar/foo'));
     //----
     $this->file->shouldReceive('isFile')->with('bar')->andReturn(true);
     $this->archive->home()->add('bar');
     $this->assertEquals('bar', $this->archive->getFileContent('bar'));
     //----
     $this->file->shouldReceive('isFile')->with('baz/bar/bing')->andReturn(true);
     $this->archive->folder('test')->add('baz/bar/bing');
     $this->assertEquals('test/bing', $this->archive->getFileContent('test/bing'));
 }
All Usage Examples Of Chumper\Zipper\Zipper::getCurrentFolderPath