<< Inhaltsverzeichnis Suchen >>

MAKE_DIRECTORY

Anweisung

Syntax:

MAKE_DIRECTORY <DIR-NAME> ON ERROR ... Anweisungen ... END

<DIR-NAME> = <STRING-AUSDRUCK>

Bedeutung:

Das Verzeichnis <DIR-NAME> wird erzeugt. Im Fehlerfall wird der Block ON ERROR ... END ausgeführt.

Beispiel:

MAKE_DIRECTORY "SUB"
   ON ERROR ERRORMES = "Fehler"+STR$(OK)+
                                                 " bei MAKE_DIRECTORY"
   END

siehe auch:

KILL_DIRECTORY, KILL