The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rocket.Chat/apps/meteor/app/file-upload/lib/FileUploadBase.ts

9 lines
256 B

import path from 'path';
import { UploadFS } from '../../../server/ufs';
10 years ago
// set ufs temp dir to $TMPDIR/ufs instead of /tmp/ufs if the variable is set
if ('TMPDIR' in process.env) {
UploadFS.config.tmpDir = path.join(process.env.TMPDIR || '', 'ufs');
}