in reply to Re^2: Proc::Background does not take file path with spaces
in thread Proc::Background does not take file path with spaces

Corion is correct, this is the way to do it. I usually write a quick sub that will process command line arguments for me:

sub argify { while (my $aref = shift) { @$aref = map "/"$_/"", @$aref; } }