“fs Move File” Ответ

fs Move File

var fs = require('fs')

var oldPath = 'old/path/file.txt'
var newPath = 'new/path/file.txt'

fs.rename(oldPath, newPath, function (err) {
  if (err) throw err
  console.log('Successfully renamed - AKA moved!')
})
Nice Narwhal

Узел файловой системой каталог файла

const {promisify} = require('util');
const fs = require('fs');
const {join} = require('path');
const mv = promisify(fs.rename);

const moveThem = async () => {
  // Move file ./bar/foo.js to ./baz/qux.js
  const original = join(__dirname, 'bar/foo.js');
  const target = join(__dirname, 'baz/qux.js'); 
  await mv(original, target);
}

moveThem();
Zacarias Zack

Узел файловой системой каталог файла

var fs = require('fs-extra')

fs.move('/tmp/somefile', '/tmp/does/not/exist/yet/somefile', function (err) {
 if (err) return console.error(err)
 console.log("success!")
})
Zacarias Zack

Ответы похожие на “fs Move File”

Вопросы похожие на “fs Move File”

Больше похожих ответов на “fs Move File” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования