creat() is to create a new file or directories
lets say i have thisCode :Kernel.creat( name , Kernel.S_IFDIR ) ;
I just want to know is there any keyword to delete the file or directory since creat() is to function to create. I want to implement a function to delete. By the way, I'm modifying an operating system called MOSS. If possible, hope to get guidance more to the operating system side. I'm using Eclipse IDE.
