Windows下清理.DS_Store文件

如果涉及macOS与Windows交换文件的话,在Windows会有一些无用的.DS_Store文件需要清理。

可以在gitbash/cygwin/cmder下执行如下命令清理:

find . -name '*.DS_Store' -type f -delete

你可能感兴趣的:(Windows下清理.DS_Store文件)