What is the path to call for when I have a project with sound files within a subfolder?
./subfolder/file.wav does not work, I guess because libpd is in a different location (?)

Try using [declare -path subfolder]
Then [open soundfile.wav(
Or just [open subfolder/soundfile.wav(

    max for some reason it does'nt work in the Bela (?), [declare -path wav-files] and [read -resize wav-files/1.wav ...( just doesn't find the file. neither [read -resize 1.wav ...(

    It should , can you show your patch and directory structure?

      It's just a subfolder /wav-files with sound files in it..which I try to load with [soundfiler], with the command [read -resize wave-files/1.wav etc
      What I get:
      error: soundfiler_read: wav-files/0.wav: No such file or directory
      verbose(4): ... you might be able to track this down from the Find menu.
      error: soundfiler_read: wav-files/1.wav: No such file or directory
      error: soundfiler_read: wav-files/2.wav: No such file or directory
      error: soundfiler_read: wav-files/3.wav: No such file or directory
      error: soundfiler_read: wav-files/4.wav: No such file or directory
      error: soundfiler_read: wav-files/5.wav: No such file or directory
      error: soundfiler_read: wav-files/6.wav: No such file or directory
      error: soundfiler_read: wav-files/7.wav: No such file or directory
      error: soundfiler_read: wav-files/8.wav: No such file or directory
      error: soundfiler_read: wav-files/9.wav: No such file or directory
      error: soundfiler_read: wav-files/10.wav: No such file or directory
      error: soundfiler_read: wav-files/11.wav: No such file or directory

      giuliomoro

      • max replied to this.

        it's case sensitive, so you need

        [read -resize wav-files/1.WAV]

        jeppius
        It's case sensitive.
        Your files are 1.WAV, but you are loading 1.wav which does not exist.

          giuliomoro changed the title to Pd subfolders .

          And this is the soundfile loading subpatch, called from a [clone] abstraction.