Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problems with Mkdir in tempfolder
Message
De
31/07/2001 02:49:53
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Problems with Mkdir in tempfolder
Divers
Thread ID:
00537623
Message ID:
00537623
Vues:
58
Dear All,

We are using VFP5 and are finding problems using MKDIR under Win 2000.

The problem specifically occurs when we get the windows tempfolder and attempt to create a new folder within a subfolder. Attempting to create 1 folder at a time does not cause a problem and if other non-windows folders are used, there is not a problem.

The error can be re-produced using the code below.

Any help, or pointers to an easy workaround would be appreciated.

Thanks

Mace

LOCAL lcTempPath, lnSize, lcCreatePath

lcTempPath = SPACE(255)
lnsize = 255

DECLARE INTEGER GetTempPath IN WIN32API INTEGER, STRING @

lnSize = GetTempPath( lnSize, @lcTempPath)

lcTempPath = SUBSTR( lcTempPath, 1, lnSize)
IF RIGHT( lcTempPath, 1) <> "\"
lcTempPath = lcTempPath + "\"
ENDIF

lcCreatePath = lcTempPath + "Hello\World"

*-- This error always returns directory already exists
MKDIR (lcCreatePath)
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform