I need to check if a file is open before I copy it to another location.The code below tells if its open with an error code = EBUSY. But if the file is not open it erases the content of the file. Is there a better way of achieving this information.
fs.open('my-file.dwg','w', function(err,data) {
});
I need to check if a file is open before I copy it to another location.The code below tells if its open with an error code = EBUSY. But if the file is not open it erases the content of the file. Is there a better way of achieving this information.
fs.open('my-file.dwg','w', function(err,data) {
});
Share
Improve this question
asked Feb 18, 2015 at 16:32
James MorrisJames Morris
3731 gold badge7 silver badges21 bronze badges
4
- One point - why are not using fs-extra module for node.js - npmjs./package/fs-extra? – Piyas De Commented Feb 18, 2015 at 16:41
- also you can get help from - stackoverflow./questions/11293857/… – Piyas De Commented Feb 18, 2015 at 16:43
- @PiyasDe I did not know about fs-extra but I will check it out. Thanks. – James Morris Commented Feb 18, 2015 at 17:59
- See: stackoverflow./a/44760825/2138743 – Joran Greef Commented Jun 26, 2017 at 13:28
2 Answers
Reset to default 7Caveat: I am posting this as the accepted answer doesn't work. However I am no expert on Windows file locking but this is what I have been able to cobble together:
On Windows there seem to be 3 types of lock which cause the EBUSY
in Node.
- Files locked with an 'exclusive lock'
- e.g. when you open a document in MS Word
- In the Windows Fileapi.h these are created with CreateFileW(dwShareMode:0) and LockFileEx(dwFlags)
- Executable files locked by the OS which are currently running
- e.g. when you run a
setup.exe
- e.g. when you run a
- System protected files
- e.g.
C:\hiberfil.sys
- e.g.
Option A:
Node fs is built on libuv which allows passing advanced options to request an exclusive lock. This seems to be the safest technique as there is no chance of changing/corrupting the file.
Open the file with UV_FS_O_RDONLY and UV_FS_O_EXLOCK
EBUSY returned for 1, 2 and 3.
try {
const fileHandle = await fs.promises.open(filePath, fs.constants.O_RDONLY | 0x10000000);
fileHandle.close();
} catch (error) {
if (error.code === 'EBUSY'){
console.log('file is busy');
} else {
throw error;
}
}
Note: this requires libuv >= 1.17.0
, which is satisfied by NodeJS >= 8.10.0
Option B:
Performing an fs.rename()
also reliably fails on a locked file, doesn't require any OS specific flags, but is more dangerous as you could introduce race condition bugs as the file is actually moved temporarily.
EBUSY returned for 1, 2 and 3.
try {
await fs.promises.rename(filePath, filePathNew);
await fs.promises.rename(filePathNew, filePath);
} catch (error) {
if (error.code === 'EBUSY'){
console.log('file is busy');
} else {
throw error;
}
}
Option C (do not use):
Perform an fs.open(..., 'r+')
. This DOES NOT WORK for files with an exclusive lock 1, no error is returned.
EBUSY returned for 2 and 3.
try {
await fs.promises.open(filePath, 'r+');
} catch (error) {
if (error.code === 'EBUSY'){
console.log('file is busy');
} else {
throw error;
}
}
It looks to me like you can use r+
:
fs.open('my-file.dwg','r+', function(err,data) {
});
From the fs
module docs:
'r+' - Open file for reading and writing. An exception occurs if the file does not exist.
If the file is already open by someone else, then it should not grant you permission for reading and writing and should return an error. This will not create the file it if does not exist.
The r+
option will not truncate or create the file like the w+
option will.