Revision [1287]
This is an old revision of MarkLogicListdir made by DavidLee on 2010-03-01 15:04:39.
Mark Logic Command: listdir
Lists directories in a Mark Logic directorySynopsis
listdir [options] [directory ...]Description
Lists directories residing on a Mark Logic server and outputs to stdout.With no directory arguement it lists all directories. This might exceed the server's memory.
With directory arguments then the list is constrained to documents in that directory one level deep only.
Options
c,-connect uri | Use the connection string instead of $MLCONNECT |
-r | Recurse to all sub directories of a specified directory |
Example
Assuming the prefix "ml" is imported as the marklogic module, prints to stdout (one uri per line) all the directories in the /Test/ directory.$ ml:listdir /Test/
Implementation
listdir is implemented as a simple xsh script which simply calls query. The source of the script is
if [ $# -eq 0 ] ; then :query -q <{{ declare namespace prop="http://marklogic.com/xdmp/property"; for $d in xdmp:document-properties()//prop:directory/base-uri() order by $d return $d }}> else :query -q "xdmp:directory-properties('$1')/base-uri()" fi
To list directories in a directory see listdir
MarkLogic Extension Module