Hi everybody,
For copying all files of a path to another, I use this way
! Copie du répertoire Photos dans le dossier SiteWeb
run('command.com /c copy photos\*.* SiteWeb\photos\*.*',1)
Now I want to copy the entire path SiteWeb to another place. I try this
! Copie du répertoire SiteWeb dans le dossier du serveur
run('command.com /c copy SiteWeb\*.* c:\Program Files\EasyPHP-5.3.9\
but I have an error "too many parameters". DO you know why?
The final must be :
! Copie du répertoire SiteWeb dans le dossier du serveur
RepertoireCible" = 'c:\Program Files\EasyPHP-5.3.9\run('command.com /c copy SiteWeb\*.* '&RepertoireCible&'*.*',1)
but this way don't works.
Thank's for your help
best regards
Philippe
For copying all files of a path to another, I use this way
! Copie du répertoire Photos dans le dossier SiteWeb
run('command.com /c copy photos\*.* SiteWeb\photos\*.*',1)
Now I want to copy the entire path SiteWeb to another place. I try this
! Copie du répertoire SiteWeb dans le dossier du serveur
run('command.com /c copy SiteWeb\*.* c:\Program Files\EasyPHP-5.3.9\
but I have an error "too many parameters". DO you know why?
The final must be :
! Copie du répertoire SiteWeb dans le dossier du serveur
RepertoireCible" = 'c:\Program Files\EasyPHP-5.3.9\run('command.com /c copy SiteWeb\*.* '&RepertoireCible&'*.*',1)
but this way don't works.
Thank's for your help
best regards
Philippe