Programming Arduino Uno to play specific WAV based off input voltages

void playfile(char *name) {
  // see if the wave object is currently doing something
  if (wave.isplaying) {// already playing something, so stop it!
    wave.stop(); // stop it
  }
}

If not, God forbid that we should actually do something with the name that was entered.