PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Fehler:EXDEV:geräteübergreifender Link nicht erlaubt, benennen Sie '/tmp/ auf Ubuntu 16.04 LTS um

Gleiches Problem. Problemumgehung:Lesen Sie die temporäre Datei, schreiben Sie die Datei an einen neuen Speicherort und entfernen Sie die temporäre Datei:

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