Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_mkdir() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_MKDIR()

 DESCRIPTION

 C_MKDIR() creates a specified directory on the default drive.

 SYNTAX

 C_MKDIR(directory)

 PARAMETERS

 directory (C) is a character string of the new directory.

 RETURNS

 C_MKDIR() returns true (.T.) if the directory was created successfully,
 or false (.F.) indicating an error occurred.

 EXAMPLES

 m_dir = space(40)

 @ 1,0 say "Enter Directory " get m_dir     && Get new directory from
 user
 read

 if !c_mkdir(m_dir)                         && Try to make directory
   ? "Error Making Directory"
 endif


See Also: C_CHDIR() C_RMDIR() C_GETDIR() C_ISDIR() C_ZAPDIR()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson