Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Build directory structure
Message
 
 
À
13/08/2009 10:21:53
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Divers
Thread ID:
01417859
Message ID:
01417879
Vues:
66
My only concern in that code would be with GO BOTTOM, APPEND BLANK, REPLACE.

All of this can be replaced with one INSERT COMMAND which may be slightly faster. Also you may use AutoInc field for MenuID.

Otherwise the code looks pretty standard.

>OK, here:
>mBuildCustomerDocumentStructure('entrypoint\*.*', 1)
>
>*mBuildCustomerDocumentStructure
>
>LPARAMETERS tcStartPoint, tnParentId
>LOCAL lnFileNumber, lnMenuId, lnCount, arr
>WITH This
>	DIMENSION arr (1, 1)
>	IF !USED('tree')
>		CREATE CURSOR tree (menuid I, parentid I NULL, name char(100), folder I DEFAULT 1)
>		APPEND BLANK		
>		REPLACE menuid WITH 1, ;
>			parentid WITH NULL, ;
>			name WITH 'Customer Documents'
>	ENDIF
>	SELECT tree
>	lnFileNumber = ADIR(arr, tcStartPoint, 'D')
>	FOR lnCount = 1 TO lnFileNumber
>		IF arr(lnCount, 1) = '.'
>			LOOP
>		ENDIF
>			
>		GO BOTTOM
>		lnMenuId = menuid + 1
>		APPEND BLANK		
>		REPLACE menuid WITH lnMenuId, ;
>			parentid WITH IIF(RECCOUNT() = 1, NULL, tnParentId), ;
>			name WITH IIF(RECCOUNT() = 1, 'Customer Documents', arr(lnCount, 1))
>		IF AT('D', arr(lnCount, 5)) # 0
>			.mBuildCustomerDocumentStructure(STRTRAN(tcStartPoint, '*.*', '') + arr(lnCount, 1) + '\*.*', menuid)
>		ELSE
>			REPLACE folder WITH 0	
>		ENDIF		
>	ENDFOR
>ENDWITH
>
>>Hi Mark,
>>
>>depends on where the slowness comes from... When it's your code, we might be able to help if you show it to us. If the problem is the mere number of directories, there's little you can do except for using cached or indexed information.
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform