2 Star 10 Fork 0

龙之言 / phiwrapper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
zip.js 2.25 KB
一键复制 编辑 原始数据 按行查看 历史
dixyes 提交于 2020-11-10 17:33 . implement zip.js
/*
phiwrapper zip.js
zip packing lib
Copyright 2020 Longyan
Copyright 2020 Yun Dou(dixyes)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
(function (){
function wshzip(dest, dlist){
println("creating zip archive");
// TODO: -9 -> modifiable
// TODO: arch-specific
var cmd = ".\\tools\\zip.x86.exe -9 " + dest + " " + dlist.join(" ");
try{
exec(cmd);
}catch(e){
if (e.number == -2147024894){
println("no zip binary found, skipping zip");
return;
}else{
println("failed to execute " + cmd +", skiping");
//println(e);
return;
}
}
}
function nodezip(dest, dlist){
var binname, cmd;
println("creating zip archive");
switch(os.platform()){
case "win32":
binname = "zip.x86.exe";
break;
case "linux":
switch(os.arch()){
case "x64":
binname = "zip.x64.linux";
break;
}
break;
}
// TODO: -9 -> modifiable
if(!binname){
println("this platform is not supported, trying \"zip\" command");
cmd = "zip -9 " + dest + " " + dlist.join(" ");
}else{
cmd = "." + path.sep + "tools" + path.sep + binname + " -9 " + dest + " " + dlist.join(" ");
}
try{
exec(cmd);
}catch(e){
println("failed to execute " + cmd +", skiping");
//println(e);
}
}
if("wsh" == runtime){
return {
"zip" : wshzip
};
}else{
return {
"zip" : nodezip
};
}
}())
PHP
1
https://gitee.com/longzhiyan/phiwrapper.git
git@gitee.com:longzhiyan/phiwrapper.git
longzhiyan
phiwrapper
phiwrapper
master

搜索帮助