Browse Source

add a searchbymime to the public api. Please all remember that access to internal oc classes will be disabled for all app for ownCloud 6. So please port yur stuff to the public api :-)

tags/v6.0.0alpha2
Frank Karlitschek 11 years ago
parent
commit
3cb016d478
1 changed files with 10 additions and 0 deletions
  1. 10
    0
      lib/public/files.php

+ 10
- 0
lib/public/files.php View File

@@ -55,6 +55,16 @@ class Files {
return(\OC_Helper::getMimeType( $path ));
}

/**
* search for files by mimetype
*
* @param string $query
* @return array
*/
public function searchByMime($mimetype) {
return(\OC\Files\Filesystem::searchByMime( $mimetype ));
}

/**
* copy the contents of one stream to another
* @param resource source

Loading…
Cancel
Save