• Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Strawberry Music Player Forums
    2. bebelalu55
    3. Best
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 6
    • Best 2
    • Controversial 0
    • Groups 0

    Best posts made by bebelalu55

    • RE: Library cleared when external drive not connected

      Hello Gustavo & Jonas,

      Thank you for looking at this problem.
      This is not a major bug preventing me from using Strawberry, but just annoying.
      I know how to get round the problem but I am not sure my sister or some of my friends would.
      This could deter them from using it.

      posted in Development
      B
      bebelalu55
    • RE: Library cleared when external drive not connected

      @Gustavo-L-Conte

      Thanks Gustavo for replying, but I am surprised it looks so complicated to see if a folder is available.
      The source folder must be stored somewhere as it can be scanned for changes at start.

      This my Library backup script in Unix:

      source="/media/Jean-Luc/JukeBox Master"
      test -d "$source"
      retval="$?"
      if [ "$retval" -ne 0 ]; then
      echo "Dossier '$source' non trouvé" (not found)
      exit 1
      fi

      I check that it is connected before doing anything.
      Surely the same logic can be applied to Strawberry, even in Windows.

      posted in Development
      B
      bebelalu55