iOS Lua 报错'system' is un

2018-03-09  本文已影响992人  冷煖自知

将loslib.c中
int stat = system(cmd);
改为
int stat = nftw(cmd, unlink_cb, 64, FTW_DEPTH | FTW_PHYS);
引入头文件
#include <ftw.h>
添加方法

int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW     *ftwbuf)
{
    int rv = remove(fpath);
    
    if (rv)
        perror(fpath);
    
    return rv;
}

听雨阁

上一篇下一篇

猜你喜欢

热点阅读