extrait de l'aide de VFP6:
***********************************
Crée un nouveau répertoire ou sous-répertoire sur le disque.
Syntaxe
MD cChemin | MKDIR cChemin
Arguments
cChemin
Spécifie un répertoire ou un chemin d'accès (avec indicateur du lecteur et répertoires).
Si cChemin est un répertoire sans indicateur de lecteur, le répertoire est créé comme sous-répertoire du répertoire Microsoft Visual FoxPro par défaut courant.
Notes
Visual FoxPro génère un message d'erreur si vous essayez de créer un répertoire qui existe déjà.
****************************************
et en VFP9:
*****************************************
Creates a new directory or subdirectory on disk.
Parameters
- cPath
Specifies a directory or a path (with a drive designator and directories).
If cPath is a directory without a drive designator, the directory is created as a subdirectory of the current Microsoft Visual FoxPro default directory.
Remarks
Example
The following example uses MKDIR to create a new directory named mytstdir, then CHDIR is used to change to the new directory. GETDIR( ) is used to display the directory structure, and then RMDIR is used to remove the newly created directory. GETDIR( ) is used to display the directory structure again.
SET DEFAULT TO HOME( ) && Restore Visual FoxPro directory
MKDIR mytstdir && Create a new directory
CHDIR mytstdir && Change to the new directory
= GETDIR( ) && Display the Select Directory dialog box
SET DEFAULT TO HOME( ) && Restore Visual FoxPro directory
RMDIR mytstdir && Remove the new directory
= GETDIR( ) && Display the Select Directory dialog box
****************************************
On va quand même exclure ton hypothèse sur la raison pour laquelle tu n'as pas trouvé 