text [清理`.DS_Store`的网络驱动器]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text [清理`.DS_Store`的网络驱动器]相关的知识,希望对你有一定的参考价值。

on idle
	tell application "Finder"
		do shell script "find ~ -name .DS_Store -mindepth 2 -delete"
		set volumesToClean to {"Backups", "Movies"}
		
		repeat with volume in volumesToClean
			if (exists disk volume) then
				set volPath to "/Volumes/" & volume
				do shell script "find " & quoted form of volPath & " -name .DS_Store -delete"
				do shell script "dot_clean " & quoted form of volPath
			end if
		end repeat
	end tell
	
	return 3600
end idle

以上是关于text [清理`.DS_Store`的网络驱动器]的主要内容,如果未能解决你的问题,请参考以下文章