原生平台main.js cc报错

Uncaught ReferenceError: cc is not defined
[0]anonymous@main.js:30
[1]anonymous@main.js:34

(function () {

if (typeof window.jsb === 'object') {

    var hotUpdateSearchPaths = localStorage.getItem('HotUpdateSearchPaths');

    if (hotUpdateSearchPaths) {

        var paths = JSON.parse(hotUpdateSearchPaths);

        jsb.fileUtils.setSearchPaths(paths);

        var fileList = [];

        var storagePath = paths[0] || '';

        var tempPath = storagePath + '_temp/';

        var baseOffset = tempPath.length;

        if (jsb.fileUtils.isDirectoryExist(tempPath) && !jsb.fileUtils.isFileExist(tempPath + 'project.manifest.temp')) {

            jsb.fileUtils.listFilesRecursively(tempPath, fileList);

            fileList.forEach(srcPath => {

                var relativePath = srcPath.substr(baseOffset);

                var dstPath = storagePath + relativePath;

                if (srcPath[srcPath.length] == '/') {

                    cc.fileUtils.createDirectory(dstPath)

                }

                else {

                    if (cc.fileUtils.isFileExist(dstPath)) {

                        cc.fileUtils.removeFile(dstPath)

                    }

                    cc.fileUtils.renameFile(srcPath, dstPath);

                }

            })

            cc.fileUtils.removeDirectory(tempPath);

        }

    }

}

})(); 就是这段代码cc.fileUtils.removeDirectory(tempPath);这个cc找不到,但是这个是引擎的代码,请问有人遇到过吗

改成jsb就好了

好的 谢谢