getDocumentPath() public method

Get the full absolute location of the document on the filesystem.
public getDocumentPath ( Path $p )
$p Path
 public function getDocument(Path $p, array $ifNoneMatch = null)
 {
     if (null !== $ifNoneMatch && in_array($this->md->getVersion($p), $ifNoneMatch)) {
         throw new RemoteStorageException('document not modified');
     }
     return $this->d->getDocumentPath($p);
 }