Search found 3 matches

by therealme
28 May 2015 03:13
Forum: DOS Batch Forum
Topic: Process files even if the path name changes
Replies: 5
Views: 4043

Re: Process files even if the path name changes

@echo off set "input_here=C:\web\site\batch\user1\0001\" set "output_here=C:\web\site\output\" set "proc_here=C:\web\site\proc" md "%output_here%" md "%proc_here%" 2>nul cd /d "%input_here%" for %%a in (.bmp) do ( set "fileName=%%a&qu...
by therealme
28 May 2015 00:02
Forum: DOS Batch Forum
Topic: Process files even if the path name changes
Replies: 5
Views: 4043

Re: Process files even if the path name changes

I just edited my question but the one who posted a reply was deleted. ;(
by therealme
26 May 2015 20:29
Forum: DOS Batch Forum
Topic: Process files even if the path name changes
Replies: 5
Views: 4043

Process files even if the path name changes

Let's say I have a batch file. The input directory is C:\web\site\batch\username\usernumber. The output directory depends on where do you want the output to be stored. My problem is, if I am the user how will I still process the data/files from my input directory if the input directory username and ...