ec_assert_directory

one of the documented procedures in this installation of the ACS
Usage:
ec_assert_directory   dir_path
What it does:
Checks that directory exists, if not creates it
Defined in: /web/philip/tcl/ecommerce-utilities.tcl

Source code:


    if { [file exists $dir_path] } {
	# Everything okay
	return 1
    } else {
	ns_mkdir $dir_path
	return 1
    }


philg@mit.edu