.. highlightlang:: us .. index:: FS_MakeDirectory .. _fs_makedirectory: FS_MakeDirectory ================ .. us.tag FS_MakeDirectory ENGLISH New300 FILE_MISC :ref:`FS_MakeDirectory` creates a new directory. .. function:: bool = FS_MakeDirectory(ssPath) .. us.return **Return Value** *bool* is TRUE (1) if the directory could be created, otherwise FALSE (0). If the directory already exists, the function returns FALSE (0). .. us.params **Parameters** .. uparam:: ssPath *ssPath* is the directory name. .. us.example **Example** The following function call creates the directory :file:`b12`. If the directory :file:`d:\\Project-123\\a34` does not exist it will be created as well. :: FS_MakeDirectory("d:\\Project-123\\a34\\b12") .. seealso:: :ref:`overview-files`, :ref:`GetDirectoryDialog` :sub:`id-805853`