shithub: mc

ref: ee4f263f0c410a8e1061ff704054f8707cb0cb0c
dir: /libstd/mkpath.myr/

View raw version
use "syswrap.use"
use "errno.use"

pkg std =
	const mkpath	: (p : byte[:] -> bool)
;;

const mkpath = {p
	var st
	var i

	for i = 0; i < p.len; i++
		if p[i] == '/' castto(byte) && i != 0
			st = mkdir(p[:i], 0o777)
			if st != 0 && (st castto(errno)) != Eexist
				-> false
			;;
		;;
	;;

	-> true
}