I have made a small app for a client. The app scans a files
directory which contains several text files. It then reads each file into a string. Every file has a tit
For people that is still getting trouble with this in your application (after removing a file in my case), I solved it by removing recursively the .DS_Store files in the project folder.
On terminal, go to the project:
cd to/your/directory
And just type:
find . -name '.DS_Store' -type f -delete
credits to Jon Bellah on his blog https://jonbellah.com/articles/recursively-remove-ds-store/