PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Errore:EXDEV:collegamento tra dispositivi non consentito, rinominare '/tmp/ su Ubuntu 16.04 LTS

Stesso problema. Soluzione alternativa:leggi il file temporaneo, scrivi il file in una nuova posizione e rimuovi il file temporaneo:

        // Read the file
        fs.readFile(oldpath, function (err, data) {
            if (err) throw err;
            console.log('File read!');

            // Write the file
            fs.writeFile(newpath, data, function (err) {
                if (err) throw err;
                res.write('File uploaded and moved!');
                res.end();
                console.log('File written!');
            });

            // Delete the file
            fs.unlink(oldpath, function (err) {
                if (err) throw err;
                console.log('File deleted!');
            });
        });