Windows下清理.DS_Store文件
2018-05-30 本文已影响23人
bluexiii
如果涉及macOS与Windows交换文件的话,在Windows会有一些无用的.DS_Store文件需要清理。
可以在gitbash/cygwin/cmder下执行如下命令清理:
find . -name '*.DS_Store' -type f -delete
如果涉及macOS与Windows交换文件的话,在Windows会有一些无用的.DS_Store文件需要清理。
可以在gitbash/cygwin/cmder下执行如下命令清理:
find . -name '*.DS_Store' -type f -delete