sql >> Base de Datos >  >> RDS >> PostgreSQL

Error:EXDEV:enlace entre dispositivos no permitido, cambie el nombre de '/tmp/ en Ubuntu 16.04 LTS

El mismo problema. Solución:lea el archivo temporal, escriba el archivo en una nueva ubicación y elimine el archivo temporal:

        // 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!');
            });
        });