Jump to content

Cleaning question...


Recommended Posts

#1 How can a delete a directory and replace it with an other

Example: c:/dossier autres/movie collectors/template

(I want to delete "template" directory and replace it with an other "template" directory")

#2 How can a delete a file in a directory and replace is with an other

(well technicly is the same question but hmmm mabey it's not the same technic :) )

thankssssssss

Link to comment
Share on other sites


deleting a directory:

RD /S /Q "c:\dossier autres\movie collectors\template\"

if the path contains spaces like in the above example,

you have to use " " to define the path.

create a directory:

md "c:\dossier autres\movie collectors\template"

Link to comment
Share on other sites

deleting a file:

del /f "c:\programs\testfile.txt"

copying a file:

copy /y "d:\xpcd\testfile.txt" "c:\programs\testfile.txt"

With the copy-command you can simply overwrite an existing file (don't forget the /y-switch!), so you have not to delete the original file first!

I hope, that's what you're looking for :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...