Is it possible to write script function, command or placeholder that can copy folder with images and css (from export directory in Mp3Tag for example) in a specifyed directory, so that I don't have to copy them manual every time when I export html file?
But it would be great if Florian could make it as script function so that I can use it in my exports,
like function $filename creates filename of export file.
I have made new export in Music Playground export (milkaPlayground_03_bat_Music_Playground_Files_Extractor.zip) that creates batch file for extracting images from cab in %appdata%\Mp3tag\export\ to workingdir.
Here is the code:
$filename(%_workingpath%%_workingdir% ---- Music Playground ----.bat,ansi)ECHO OFF
:Creates "_Music_Playground_Files_" directory
IF not EXIST "%_workingpath%_Music_Playground_Files_\" md "%_workingpath%_Music_Playground_Files_\"
:Unpack files from "milkaPlayground 04 Music Playground Files.cab" to "_Music_Playground_Files_" directory
EXPAND "'%'appdata'%'\Mp3tag\export\milkaPlayground 04 Music Playground Files.cab" -f:* "_Music_Playground_Files_"
:Deletes created batch file
DEL "%_workingpath%%_workingdir% ---- Music Playground ----.bat