这是个很畸形的需求
有时候用户会有一些魔幻的操作,会擅自把文件拷贝到自启动目录,但这样直接拷贝不一定会运行,
当然用户马上就会失忆忘记他拷贝过的操作,这个文件会一致随着3dmax加载,不起作用,且可能会拖慢0.1秒 - N秒的启动速度,
你还不能弹窗提示,只要一提示,用户就会认为是病毒,因为用户已经忘记他拷贝过文件这个操作,也找不到删除的办法,每次启动你都弹
那么我的做法就是检测到他在自启动目录就不运行。
--禁止在max根目录直接运行
fn isRunInMaxroot =
(
thisFile = toLower (getThisScriptFilename())
thisFileName = getFilenameFile thisFile + getFilenameType thisFile
maxroot = toLower (getdir #maxroot)
disableItems = #(
maxroot + thisFileName,
maxroot + "plugins\\" + thisFileName,
maxroot + "stdplugs\\" + thisFileName,
maxroot + "scripts\\startup\\" + thisFileName,
toLower (getdir #userStartupScripts + "\\" + thisFileName)
)
for item in disableItems do
(
if thisFile == item do return true
)
return false
)
stat = isRunInMaxroot()