Jump to content

Recommended Posts

Posted

Hey, I have thousands of files where I want to change their content by my own definied. of course I could just create one file and copy it but it can't be done due to files have various names and I can't imagine manual name change of them all...

 

In short:

 

I want an application which let me put my own binary content into another files.:)

Reminder: Fighter pilots make movies. Bomber pilots make... HISTORY! :D | Also to be remembered: FRENCH TANKS HAVE ONE GEAR FORWARD AND FIVE BACKWARD :D

ಠ_ಠ



Posted

Can you be a bit more specific Bob? What exactly are you trying to do?

There are only 10 types of people in the world: Those who understand binary, and those who don't.

Posted

I want to put my binary content to whatever file I'd like to - not manually - automatically :P

 

I have many pictures (JPEG, PSD, TGA ect). I'd like to put there my content, replacing old one.

Reminder: Fighter pilots make movies. Bomber pilots make... HISTORY! :D | Also to be remembered: FRENCH TANKS HAVE ONE GEAR FORWARD AND FIVE BACKWARD :D

ಠ_ಠ



Posted
I have many pictures (JPEG, PSD, TGA ect). I'd like to put there my content, replacing old one.
Like some sort of watermark? Or a date/time stamp? You probably want to look for some sort of batch program that can do this.

There are only 10 types of people in the world: Those who understand binary, and those who don't.

Posted (edited)

TEST.CMD

 
@ECHO OFF
Set MYFILE=D:\F-source\myimage.bmp
Set MYDEST=D:\F-dest
Set FILETYPE=*.BMP
for %%i in (%MYDEST%\%FILETYPE%) DO (
ECHO Processing: %%i
Copy /Y "%MYFILE%" "%%i"
)

 

Try "FOR /?" in a cmd-prompt for more fun.

Edited by Panzertard

The mind is like a parachute. It only works when it's open | The important thing is not to stop questioning

Posted

Case - Yes something like that but without watermarking. Friend of mine helped me to do that. Since now every who would like to view my pictures will see same picture only.

oh i see Panzer, i test it next time :) Thx

Reminder: Fighter pilots make movies. Bomber pilots make... HISTORY! :D | Also to be remembered: FRENCH TANKS HAVE ONE GEAR FORWARD AND FIVE BACKWARD :D

ಠ_ಠ



  • Recently Browsing   0 members

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