Delete .DS_Store file in OneDrive on Mac
Background This is the "find" command to remove all (including OneDrive) .ds_store in a particular directory. Pay attention to the ".", run the command only at the directory level you would like to search and execute. Command find . -type f -name '.DS_Store' -exec rm {} \;