Playing wav files not located in /var/lib/asterisk/sounds

Hello,

Im using Asterisk::AGI perl module for writing AGI scripts . I need to be able to play wav files not located in /var/lib/asterisk/sounds . The Playback() application looks for files located in /var/lib/asterisk/sounds.
Is there a way to play wav files not located in that default folder ?. It would be really helpful if you show me the appropriate syntax to be used for the same.

Thank You.

just use the full path

Playback(/var/lib/someotherplace/myfile)

I am using following and it works fine

$AGI->exec(“Playback”, “/projects/prompts/welcome”);