Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Rm
Message
De
02/09/2014 02:20:13
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Re: Rm
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01606885
Message ID:
01606886
Vues:
122
This message has been marked as the solution to the initial question of the thread.
>I am running into an issue in which I need to delete a directory that is not empty - it is filled with misc directories.
>example C:\dir1\dir2\dir3\dir4
>I want to shortcut the delete simply c:\dir1 *.* and in the process remove whatever other directories are tucked away in there .... - I am getting error message 'the directory is not empty'
>old solution is RM -f
>Is there a way to run the effect of the RM -F in VFP by using a short program.
>Or any other routes I might try?
>
>tnx
>k

You can use Windows File System Object
oFSO = CREATEOBJECT("Scripting.FileSystemObject")
LCPATH = "C:\Your Folder Name"
oFSO.DeleteFolder( LCPATH  )
In the End, we will remember not the words of our enemies, but the silence of our friends - Martin Luther King, Jr.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform