gurba-0.40/
gurba-0.40/bin/
gurba-0.40/lib/
gurba-0.40/lib/cmds/guild/fighter/
gurba-0.40/lib/cmds/monster/
gurba-0.40/lib/cmds/race/catfolk/
gurba-0.40/lib/cmds/race/dwarf/
gurba-0.40/lib/cmds/verb/
gurba-0.40/lib/daemons/data/
gurba-0.40/lib/data/boards/
gurba-0.40/lib/data/messages/
gurba-0.40/lib/data/players/
gurba-0.40/lib/design/
gurba-0.40/lib/domains/gurba/
gurba-0.40/lib/domains/gurba/guilds/fighter/
gurba-0.40/lib/domains/gurba/monsters/
gurba-0.40/lib/domains/gurba/objects/armor/
gurba-0.40/lib/domains/gurba/objects/clothing/
gurba-0.40/lib/domains/gurba/objects/weapons/
gurba-0.40/lib/domains/gurba/vendors/
gurba-0.40/lib/kernel/cmds/admin/
gurba-0.40/lib/kernel/daemons/
gurba-0.40/lib/kernel/include/
gurba-0.40/lib/kernel/lib/
gurba-0.40/lib/kernel/net/
gurba-0.40/lib/kernel/sys/
gurba-0.40/lib/logs/
gurba-0.40/lib/pub/
gurba-0.40/lib/std/modules/languages/
gurba-0.40/lib/std/races/
gurba-0.40/lib/std/races/monsters/
gurba-0.40/lib/wiz/fudge/
gurba-0.40/lib/wiz/spud/
gurba-0.40/src/host/beos/
gurba-0.40/src/host/pc/res/
gurba-0.40/src/kfun/
gurba-0.40/src/lpc/
gurba-0.40/src/parser/
gurba-0.40/tmp/
NAME
	get_dir - get information about files in a directory

SYNOPSIS
	mixed **get_dir(string file)


DESCRIPTION
	Get information about a file or files in a directory.  The return
	value is of the form

	    ({ ({ file names }), ({ file sizes }), ({ file mod times }) })

	If a file is a directory, the file size will be given as -2.
	If the last path component of the specified file can be interpreted
	as a regular expression, all files which match this regular expression
	are collected.  Otherwise, only the file itself is taken.  If no files
	match, or if the file is not present, the return value of get_dir()
	will be ({ ({ }), ({ }), ({ }) }).
	The following characters have a special meaning in a regular expression:

	    ?	    any single character
	    *	    any (possibly empty) string
	    [a-z]   any character in the range a-z
	    [^a-z]  any character not in range a-z
	    \c	    the character c, not interpreted as having a special
		    meaning

	The files will be sorted by file name.
	Only as many files as specified by status()[ST_ARRAYSIZE], with
	ST_ARRAYSIZE defined in the include file <status.h>, will be collected.

SEE ALSO
	kfun/make_dir, kfun/remove_dir