import process
import fsys;
runlnk =function(exe){
exe = string.lower(exe)
fsys.enum( fsys.getSpecial(0x0000 /*_CSIDL_DESKTOP*/ ),
"*.lnk",
function(dir,filename){
if(filename){
if(string.find( string.lower(filename),exe))
process.execute( fsys.joinpath(dir,filename) )
}
}
);
}
//运行桌面上的快捷方式,参数为要查找的文件名,支持模式表达式
runlnk("qq")
阅读(1283) | 评论(0) | 转发(0) |