Resolve "Store dest filename relative"

This commit is contained in:
ScriptFanix 2026-01-16 02:31:34 +01:00 committed by Vincent Riquer
parent 0b08622108
commit 586785d546
2 changed files with 29 additions and 26 deletions

View File

@ -1,13 +1,15 @@
#!/bin/bash #!/bin/bash
copyFiles_matching() { copyFiles_matching() {
extension="${filename##*.}" local extension="${filename##*.}"
if \
cp -al \ cp -al \
"$sourcepath/$filename" \ "$sourcepath/$filename" \
"$destdir/$destfile.$extension" \ "${destinationpath[$destination]}/$destdir/$destfile.$extension" \
2>/dev/null \ 2>/dev/null \
|| cp -a \ || cp -a \
"$sourcepath/$filename" \ "$sourcepath/$filename" \
"$destdir/$destfile.$extension" "${destinationpath[$destination]}/$destdir/$destfile.$extension"
then
echo \ echo \
"UPDATE destination_files" \ "UPDATE destination_files" \
"SET filename=" \ "SET filename=" \
@ -23,11 +25,12 @@ copyFiles_matching() {
" WHERE id=$destfileid" \ " WHERE id=$destfileid" \
" )," \ " )," \
" rename_pattern=" \ " rename_pattern=" \
"\"${destinationrenamepath[$destination]}/${destinationrename[$destination]}\","\ "\"${destinationrenamepath[$destination]}/${destinationrename[$destination]}\","\
" fat32compat=" \ " fat32compat=" \
"${destinationfat32compat["$destination"]}," \ "${destinationfat32compat["$destination"]}," \
" ascii=${destinationascii["$destination"]}" \ " ascii=${destinationascii["$destination"]}"\
"WHERE id=$destfileid;" \ "WHERE id=$destfileid;" \
>&3 >&3
(( ++copies )) (( ++copies ))
fi
} }

View File

@ -98,7 +98,7 @@ getDestDir() {
part=${part#*/} part=${part#*/}
done done
fi fi
if ! [ -d "$destdir" ] if ! [ -d "${destinationpath[$destination]}/$destdir" ]
then then
mkdir -p "${destinationpath[$destination]}/$destdir" mkdir -p "${destinationpath[$destination]}/$destdir"
fi fi