Home
last modified time | relevance | path

Searched refs:fileUrl2 (Results 1 – 1 of 1) sorted by relevance

/third_party/node/test/parallel/
Dtest-fs-null-bytes.js86 const fileUrl2 = new URL('file:///C:/foo%00bar'); constant
119 check(fs.access, fs.accessSync, fileUrl2);
120 check(fs.access, fs.accessSync, fileUrl2, fs.F_OK);
121 check(fs.appendFile, fs.appendFileSync, fileUrl2, 'abc');
122 check(fs.chmod, fs.chmodSync, fileUrl2, '0644');
123 check(fs.chown, fs.chownSync, fileUrl2, 12, 34);
124 check(fs.copyFile, fs.copyFileSync, fileUrl2, 'abc');
125 check(fs.copyFile, fs.copyFileSync, 'abc', fileUrl2);
126 check(fs.lchown, fs.lchownSync, fileUrl2, 12, 34);
127 check(fs.link, fs.linkSync, fileUrl2, 'foobar');
[all …]