Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What's wrong with this code?
Message
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
What's wrong with this code?
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01121797
Message ID:
01121797
Views:
53
Hi everybody,

I want to clean the temp directory on the applicaiton startup. I wrote this code:
local lcTempDir, lnFiles, lnI, loErr, lcError
lcTempDir = addbs(sys(2023))
local array laFiles[1]
lnFiles = adir(laFiles, m.lcTempDir + "*.*")

for lnI = 1 to m.lnFiles
    try
    	delete file (m.lcTempDir + laFiles[m.lnI,1]) 
    catch to loErr	
	   	lcError = Log_Error(m.loErr)
	   	=ErrorMsg(m.lcError)
	   	loop
    endtry
next
However, it gives me first file is in use error, that is caught and shown, but then it displayes "Unhandled structure exception". What is wrong here?

Thanks in advance.
If it's not broken, fix it until it is.


My Blog
Next
Reply
Map
View

Click here to load this message in the networking platform