Summary: Hi I need help of a script that can take a source directory (containing subdirs and files) and copy to the destination directory of the same name (sub...
Summary: A 9x bootdisk won't do it. Even 9x pure dos doesn't preserve the space, at least using its available internal commands. I have used NTFS4DOS to copy...
Summary: Ok 1st thanks to Chris for my help the other day... Now...I have a batch which copies files for backup onto CD, what I want is for if the file is the ...
Summary: I have tried lots of ways to rename files by using a batch file but I can not add prefixes to the my old file names by using wild cards. Is there a wa...
Summary: Try this: cd\ [eol] dir *.pst /s /b >> c:\info.txt [eol] For /F "delims=" %%i in (c:\info.txt) do copy "%%i" "\\netshare\c\sample" [eol] del c:\info....
Summary: Problem - have 2 dirs (c:\old , c:\new) and i need to copy files from new -> old. Have written a batch file that, if exist, copy file with extension ....
Summary: How can I rename a file to a file with a secuential number? Always taking the last number + 1 of course. For example last file in a directory is: c:\C...
Summary: Maybe someone on this site can help me. I need a batch file to rename files. The way it needs to work is: you open the batch file and it asks you to p...
Summary: I noticed on an earlier forum that someone helped a person to rename some files to another particular format. I am having problems doing the same thin...
Summary: I wrote a qbasic ( program to create a .bat file which creates and sets an environment variable. I then use value of the environment variable for the...
Summary: I'm really hoping sombody can help me with this - I'm a lingo programmer and don't know a lot about DOS, so if you know the answer to this one, you'll...
Summary: Hello, I am tring to write a batch file that will copy files from c:\temp to multiple computers in a specific location. I can do a copy c:\temp to the...
Summary: How do I rename a file with the current date? eg test.txt to text20030422.txt -------------- for /F %%A in ("%DATE%") do ren test.txt test%%C%%A%%B.tx...
Summary: Hello, Miskva. > Guess it *IS* impossible to do > this without 3rd party tools ... It's not impossible. You've already seen a solution without 3rd par...
Summary: To copy the files with a required date from a folder to a new one use the following batch, where leaving blank the last parameter means to copy the cu...
Summary: I'll like to make a copy of a database from the network drive to the c: drive. Problem is that the database is inside a subdirectory which has been na...
Summary: i saved a bunch of webpages off of a site, and many of the filenames ended up with like %2F instead of /, %3f instead of ?, and so on so i made a batc...
Summary: maybe this helps: net use q: \\pcname\share >net use for connecting the pc you want do something< xcopy /e c:\folder\ q:\folder\ >xcopy for c...
Summary: I need a batch file that can compare the contents of 2 sets of folders (folder#1 and folder#2) by name and then do the following for all files: If a f...
Summary: I am looking to make a batch to copy all files that are 2 days old. Xcopy will copy using dates. How can I tell a batch file to look for dates of toda...
Summary: I would like to copy files from one folder to annother e.g. copy c:\mp3\*.mp3 c:\mp3copy but i would like to only copy ones with certain names e.g. co...
Summary: Hello! I need help on copying files on a floppy disk, I only have a floppy disks with only 1.38 mb( about 7 of them) but a file that I want to transfe...