mirror of https://github.com/lukechilds/node.git
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.
31 lines
669 B
31 lines
669 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
var dir = path.resolve(common.tmpDir);
|
|
|
|
// Make sure that the tmp directory is clean
|
|
common.refreshTmpDir();
|
|
|
|
// Make a long path.
|
|
for (var i = 0; i < 50; i++) {
|
|
dir = dir + '/1234567890';
|
|
try {
|
|
fs.mkdirSync(dir, '0777');
|
|
} catch (e) {
|
|
if (e.code !== 'EEXIST') {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Test if file exists synchronously
|
|
assert(common.fileExists(dir), 'Directory is not accessible');
|
|
|
|
// Test if file exists asynchronously
|
|
fs.access(dir, function(err) {
|
|
assert(!err, 'Directory is not accessible');
|
|
});
|
|
|