What is Bud1% @ @ @ @E%DSDB` @ @ @?

后端 未结 3 730
不知归路
不知归路 2021-02-13 17:44

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

3条回答
  •  情深已故
    2021-02-13 18:09

    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/

提交回复
热议问题