本文整理汇总了TypeScript中fs-extra.renameSync函数的典型用法代码示例。如果您正苦于以下问题:TypeScript renameSync函数的具体用法?TypeScript renameSync怎么用?TypeScript renameSync使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了renameSync函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: parseData
child.on('close', (code: number) => {
if (errorLine.trim().length > 0) {
if (errorData) {
parseData(errorLine.trim());
}
else {
log.error(errorLine.trim());
}
}
if (code === 0) {
if (this.type !== 'metal' || this.platform === Platform.Krom) {
if (compiledShader.files === null || compiledShader.files.length === 0) {
fs.renameSync(temp, to);
}
for (let file of compiledShader.files) {
fs.renameSync(path.join(this.to, file + '.temp'), path.join(this.to, file));
}
}
resolve(compiledShader);
}
else {
process.exitCode = 1;
reject('Shader compiler error.');
}
});
示例2: setupFixtureRepository
export function setupFixtureRepository(repositoryName: string): string {
const testRepoFixturePath = Path.join(__dirname, 'fixtures', repositoryName)
const testRepoPath = temp.mkdirSync('desktop-git-test-')
FSE.copySync(testRepoFixturePath, testRepoPath)
FSE.renameSync(
Path.join(testRepoPath, '_git'),
Path.join(testRepoPath, '.git')
)
const ignoreHiddenFiles = function(item: KlawEntry) {
const basename = Path.basename(item.path)
return basename === '.' || basename[0] !== '.'
}
const entries: ReadonlyArray<KlawEntry> = klawSync(testRepoPath)
const visiblePaths = entries.filter(ignoreHiddenFiles)
const submodules = visiblePaths.filter(
entry => Path.basename(entry.path) === '_git'
)
submodules.forEach(entry => {
const directory = Path.dirname(entry.path)
const newPath = Path.join(directory, '.git')
FSE.renameSync(entry.path, newPath)
})
return testRepoPath
}
示例3: rename
export function rename(src: string, dest: string) {
// Log.info(`./> mv ${src} ${dest}`);
try {
fse.renameSync(src, dest);
} catch (e) {
Log.error(`rename: ${e.message}`);
}
}
示例4: catch
.forEach(file => {
if (file.endsWith(oldExtension)) {
try {
fs.renameSync(file, file.replace(oldExtension, newExtension));
} catch (error) {
logger.error(`Failed to rename log file: "${error.message}"`);
}
}
});
示例5: parseData
child.on('close', (code: number) => {
if (errorLine.trim().length > 0) {
if (errorData) {
parseData(errorLine.trim());
}
else {
log.error(errorLine.trim());
}
}
if (code === 0) {
fs.renameSync(temp, to);
resolve(compiledShader);
}
else {
process.exitCode = 1;
reject('Shader compiler error.');
}
});
示例6: resolve
process.on('close', (code) => {
if (code !== 0) {
log.error('kraffiti process exited with code ' + code + ' when trying to convert ' + path.parse(from).name);
resolve();
return;
}
fs.renameSync(temp, to);
const lines = output.split('\n');
for (let line of lines) {
if (line.startsWith('#')) {
var numbers = line.substring(1).split('x');
options.original_width = parseInt(numbers[0]);
options.original_height = parseInt(numbers[1]);
resolve();
return;
}
}
resolve();
});
示例7: asyncMap
return await asyncMap(rawImages, (path) => {
let parts = path.split('.');
let newPath = "";
let extension = parts[path.split('.').length -1];
if (jpgExtensions.indexOf(extension) > -1) {
parts[path.split('.').length - 1] = 'jpg';
newPath = parts.join('.');
} else {
parts[path.split('.').length - 1] = 'png';
newPath = parts.join('.');
}
if (path !== newPath) {
let toReturn = newPath;
path = resolve(basePath, path);
newPath = resolve(basePath, newPath);
logger.info(`Renaming ${path} to ${newPath}`);
renameSync(path, newPath);
return toReturn;
} else {
return path;
}
});
示例8:
submodules.forEach(entry => {
const directory = Path.dirname(entry.path)
const newPath = Path.join(directory, '.git')
FSE.renameSync(entry.path, newPath)
})
示例9:
});
fs.ensureSymlink(path, errorCallback);
fs.ensureSymlinkSync(path);
fs.emptyDir(path).then(() => {
// stub
});
fs.emptyDir(path, errorCallback);
fs.emptyDirSync(path);
fs.pathExists(path).then((_exist: boolean) => {
// stub
});
fs.pathExists(path, (_err: Error, _exists: boolean) => { });
const x: boolean = fs.pathExistsSync(path);
fs.rename(src, dest, errorCallback);
fs.renameSync(src, dest);
fs.truncate(path, len, errorCallback);
fs.truncateSync(path, len);
fs.chown(path, uid, gid, errorCallback);
fs.chownSync(path, uid, gid);
fs.fchown(fd, uid, gid, errorCallback);
fs.fchownSync(fd, uid, gid);
fs.lchown(path, uid, gid, errorCallback);
fs.lchownSync(path, uid, gid);
fs.chmod(path, modeNum, errorCallback);
fs.chmod(path, modeStr, errorCallback);
fs.chmodSync(path, modeNum);
fs.chmodSync(path, modeStr);
fs.fchmod(fd, modeNum, errorCallback);
fs.fchmod(fd, modeStr, errorCallback);
fs.fchmodSync(fd, modeNum);
示例10: pack
pack(module_name: string, callback: Function) {
var baseFolder = global.clientAppRoot + "\\modules\\" + module_name + "\\";
var manifest_file = fs.readJsonSync(baseFolder + consts.MANIFEST_NAME, { throws: false });
//merge the manifest into the modules.json file
if (manifest_file === null)
callback("invalid json, try using ascii file");
var zip = new JSZip();
var filesArr: Array<any> = [];
for (var i = 0; i < manifest_file.files.length; i++) {
if (fs.existsSync(baseFolder + manifest_file.files[i])) {
var fileContent = fs.readFileSync(baseFolder + manifest_file.files[i]);
zip.file(manifest_file.files[i], fileContent);
}
}
if (manifest_file.routes !== undefined) {
var routeBase: string = serverRoot + "/routes/";
for (var i = 0; i < manifest_file.routes.length; i++) {
if (fs.existsSync(routeBase + manifest_file.routes[i].path)) {
var fileContent = fs.readFileSync(routeBase + manifest_file.routes[i].path);
zip.folder("routes").file(manifest_file.routes[i].path, fileContent);
}
var tsfile = routeBase + manifest_file.routes[i].path.replace('.js', '.ts');
if (fs.existsSync(tsfile)) {
var fileContent = fs.readFileSync(tsfile);
zip.folder("routes").file(manifest_file.routes[i].path.replace('.js', '.ts'), fileContent);
}
}
}
if (manifest_file.scripts !== undefined) {
for (var i = 0; i < manifest_file.scripts.length; i++) {
if (fs.existsSync(baseFolder + "/scripts/" + manifest_file.scripts[i])) {
var fileContent = fs.readFileSync(baseFolder + "/scripts/" + manifest_file.scripts[i]);
zip.folder("scripts").file(manifest_file.scripts[i], fileContent);
}
}
}
if (fs.existsSync(baseFolder + "about.html")) {
var fileContent = fs.readFileSync(baseFolder + "about.html");
zip.file("about.html", fileContent);
}
var manifestContent = fs.readFileSync(baseFolder + consts.MANIFEST_NAME);
zip.file(consts.MANIFEST_NAME, manifestContent);
var content = zip.generate({ type: "nodebuffer" });
var packageFileName = appRoot + "/nodulus_modules/" + module_name + ".zip";
var packageBackupFileName = appRoot + "/nodulus_modules/" + module_name + "/" + module_name + "." + this.timestamp() + ".zip";
if (fs.existsSync(packageFileName)) {
fs.ensureDirSync(appRoot + "/nodulus_modules/" + module_name);
fs.renameSync(packageFileName, packageBackupFileName);
}
//var oldPackage = fs.readFileSync(global.appRoot + "/nodulus_modules/" + module_name + ".zip");
// see FileSaver.js
fs.writeFile(packageFileName, content, function (err: any) {
if (err) throw err;
callback(null, manifest_file);
});
}