G
Guest
Hello...
I'm using COPY to cat 3 files together. I get this error using the script
below...
\\audioserver\audio1\tags\Copyright-128-44100-Mono.mp3
The system cannot find the path specified.
0 file(s) copied.
\\audioserver\audio1\tags\Copyright-128-44100-Mono.mp3
The system cannot find the path specified.
0 file(s) copied.
Of course, the file is there and the structure is correct. If I manually do
copy with all the file names it works just fine.
The script is as follows...
[1]@echo off
[2]setlocal enabledelayedexpansion
[3]for /r \\Audioserver\Audio1\Mp3\Product-128-44100-Mono %%i in (.) do (
[4] copy /B
\\audioserver\audio1\tags\copyright-128-44100-mono.mp3+\\audioserver\audio1\mp3\product-128-44100-mono\%%i+\\audioserver\audio1\tags\wordsender-128-44100-mono.mp3 \\audioserver\audio1\mp3\product-128-44100-mono\merge\%%i
[5])
[6]goto :eof
Thanks, in advance...
JJ
I'm using COPY to cat 3 files together. I get this error using the script
below...
\\audioserver\audio1\tags\Copyright-128-44100-Mono.mp3
The system cannot find the path specified.
0 file(s) copied.
\\audioserver\audio1\tags\Copyright-128-44100-Mono.mp3
The system cannot find the path specified.
0 file(s) copied.
Of course, the file is there and the structure is correct. If I manually do
copy with all the file names it works just fine.
The script is as follows...
[1]@echo off
[2]setlocal enabledelayedexpansion
[3]for /r \\Audioserver\Audio1\Mp3\Product-128-44100-Mono %%i in (.) do (
[4] copy /B
\\audioserver\audio1\tags\copyright-128-44100-mono.mp3+\\audioserver\audio1\mp3\product-128-44100-mono\%%i+\\audioserver\audio1\tags\wordsender-128-44100-mono.mp3 \\audioserver\audio1\mp3\product-128-44100-mono\merge\%%i
[5])
[6]goto :eof
Thanks, in advance...
JJ