Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(2 edits)

Yeah, the simple answer here is to always enclose filenames with spaces in them in matched quotes (single or double), or escape the spaces with a preceding backslash character (\) when working with such files from a Linux or MacOS terminal.  (Probably the same for Windows as well.)  Filenames with spaces are pretty common for quite a few years now, so one should just get used to assuming a need for using quoting or escaping when spaces in filenames are involved.

One should also be careful of this concern within program code as well to avoid unexpected and sometimes hard to track bugs.  Always ensure any spaces in filenames are handled properly by your code or expect strange issues to occur.