Код: Выделить всё
import fs from "fs/promises";
Код: Выделить всё
const dir = await fs.openDir(...);
await dir.sync(); // error: no sync method exists
Код: Выделить всё
const dir = await fs.openDir(...);
await fs.fsync(dir.fd); // error: no fsync method exists
Как я могу использовать мой каталог с использованием node.js fs/probision ?>
Подробнее здесь: https://stackoverflow.com/questions/797 ... -directory
Мобильная версия