Boberro Posted October 2, 2010 Posted October 2, 2010 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 ಠ_ಠ ツ
Case Posted October 2, 2010 Posted October 2, 2010 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.
Boberro Posted October 2, 2010 Author Posted October 2, 2010 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 ಠ_ಠ ツ
Case Posted October 2, 2010 Posted October 2, 2010 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.
Panzertard Posted October 2, 2010 Posted October 2, 2010 (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 October 2, 2010 by Panzertard The mind is like a parachute. It only works when it's open | The important thing is not to stop questioning
Boberro Posted October 2, 2010 Author Posted October 2, 2010 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 ಠ_ಠ ツ
Recommended Posts