You could also simply use find “-printf”, as in :
find . -printf "\"%p\" " | xargs your_command
where:
%p = file-path
This will surround every found file-path with quotes and separate each item with a space.
This avoids the use of multiple commands.