1 Star 0 Fork 20

Mark-yeyecloud/Linger

forked from loveyu/Linger 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CompressionCode.bat 637 Bytes
一键复制 编辑 原始数据 按行查看 历史
loveyu 提交于 2014-08-15 02:09 . 初次更新
::Must to convert GBK encoding
@echo off
if "%1" EQU "" (
::如果当前文件夹参数不存在
echo Usage: %0 dir_path
goto :eof
)
::开始调用,使用相对路径
call :process %1
goto :eof
:process
::查询目录中的文件列表
for /f "delims=" %%a in ('dir /a-d /b %1\*.php') do (
echo FILE%%a
if not exist "new_%1" (
:: 不存在目录进行创建
mkdir "new_%1"
)
:: 开始代码转换
php -w "%1\%%a" > "new_%1\%%a"
)
::查询文件夹列表
for /f "delims=" %%a in ('dir /ad /b %1') do (
::判断是否存在文件夹
if exist "%1\%%a" (
echo -------------------------------------------
echo DIR%1\%%a
::开始进行递归操作
call :process %1\%%a
)
)
goto :eof
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yeyecloud/Linger.git
git@gitee.com:yeyecloud/Linger.git
yeyecloud
Linger
Linger
master

搜索帮助