1.

Solve : Is Everthing possible??

Answer»

I need a software to write batch file with commands

for example

ren File1 File001

or

copy /Y File1 File001

Is It Even possible

I dont Think So But even if Ther Will be a similar tool 
i would give him a 50 thanks Quote from: the_mad_joker on January 30, 2010, 12:43:45 AM


ren File1 File001
or
copy /Y File1 File001

You are not only Mad but also a Joker.

C:\>ren /?
Renames a file or files.

RENAME [drive:][path]filename1 filename2.
REN [drive:][path]filename1 filename2.

Note that you cannot specify a new drive or path for your destination file.

C:\>copy /?
Copies one or more files to another location.

COPY [/D] [/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]
     [+ source [/A | /B] [+ ...]] [destination [/A | /B]]

  source       Specifies the file or files to be copied.
  /A           Indicates an ASCII text file.
  /B           Indicates a binary file.
  /D           Allow the destination file to be created decrypted
  destination  Specifies the directory and/or filename for the new file(s).
  /V           Verifies that new files are written CORRECTLY.
  /N           Uses SHORT filename, if available, when copying a file with a
               non-8dot3 name.
  /Y           Suppresses prompting to confirm you WANT to overwrite an
               existing destination file.
  /-Y          Causes prompting to confirm you want to overwrite an
               existing destination file.
  /Z           Copies networked files in restartable mode.

The switch /Y may be preset in the COPYCMD environment variable.
This may be overridden with /-Y on the command line.  Default is
to prompt on overwrites unless COPY command is being executed from
within a batch script.

To append files, specify a single file for destination, but multiple files
for source (using WILDCARDS or file1+file2+file3 format).

C:\>TMJ, search for Notepad++ on GOOGLE. It won't MAKE the files, per-say (no program will, who would make a scripting program, to automate the script-creation of another scripting program?!), but it will colour-code commands, etc. to make it easier. It also has a lot more features than notepad, so I suggest you try it. Thanks for your help all Of you
(Specially Helpmeh)


Discussion

No Comment Found