From 71a5bbdbed854416ac84846474a242e39cd66b51 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 13 Jan 2024 09:30:09 -0300 Subject: Fix: playlist-copy: adb: update file list at the destination --- playlist-get | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/playlist-get b/playlist-get index 2d6426d..661eac9 100755 --- a/playlist-get +++ b/playlist-get @@ -59,6 +59,7 @@ else action="get" fi +# Start echo "Getting files from $PLAYLISTS/$PLAYLIST.m3u..." cd $MEDIA @@ -74,17 +75,22 @@ cat $PLAYLISTS/$PLAYLIST.m3u | while read file; do prefix="/$(dirname "$file")" echo mkdir -p \"$DEST$prefix\" | adb shell $APP $action "$file" "$DEST$prefix" - - # Thanks https://stackoverflow.com/questions/17928576/refresh-android-mediastore-using-adb - adb shell "find $DEST -exec am broadcast \ - -a android.intent.action.MEDIA_SCANNER_SCAN_FILE \ - -d file://{} \\;" else $APP $action "$file" $DEST fi done -# Copy the playlist to the destination +# Additional procedures if [ "$action" != "get" ]; then + # Copy the playlist to the destination $APP $action "$PLAYLISTS/$PLAYLIST.m3u" $DEST/$PLAYLIST.m3u + + # Refresh file list at the destination + if [ "$APP" == "adb" ]; then + # Thanks https://stackoverflow.com/questions/17928576/refresh-android-mediastore-using-adb + echo "Updating file list at the destination..." + adb shell "find $DEST -exec am broadcast \ + -a android.intent.action.MEDIA_SCANNER_SCAN_FILE \ + -d file://{} \\;" + fi fi -- cgit v1.2.3