Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Remove Folder Problem
Message
From
05/05/2005 07:31:52
 
 
To
05/05/2005 05:11:39
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 6
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01011193
Message ID:
01011210
Views:
16
You can also remove the directory using "strict" VFP:
if directory(cFolder2)
  lcWasSafe = set('safety')
  set safety off
  delete file (addbs(cFolder2)+'*.*')
  rmdir (cfolder2)
  if lcWasSafe = 'ON'
    set safety on
  endif
endif
Glenn

>Dear Sir,
>
>I want to remove a folder and use following code but it generates error.
>The line on which error appears is the second last line.
>
>Please modify codes or suggest some other codes to delete any folder.
>
>
>cFolder1 = alltrim(Thisform.text4.value)
>cFolder2 = alltrim(thisform.text8.value)
>
>&& test if folder already exists
>fso =createobject("Scripting.FileSystemObject")
>aoo= fso.FolderExists(cFolder2)
>
>&& if folder already exists then delete
>if aoo=.t.
>fso =createobject("Scripting.FileSystemObject")
>fldr=fso.DeleteFolder(cFolder2) && GENERATES ERROR ON THIS LINE
>endif
>
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform