mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
Merge pull request #417 from ReadyTalk/repatch-windows-file-delete
repatch windows file delete
This commit is contained in:
commit
795604bbc4
@ -389,7 +389,7 @@ Java_java_io_File_delete(JNIEnv* e, jclass, jstring path)
|
||||
int r;
|
||||
if (chars) {
|
||||
#ifdef PLATFORM_WINDOWS
|
||||
if (GetFileAttributes(chars) == FILE_ATTRIBUTE_DIRECTORY) {
|
||||
if (GetFileAttributes(chars) & FILE_ATTRIBUTE_DIRECTORY) {
|
||||
r = !RemoveDirectory(chars);
|
||||
} else {
|
||||
r = REMOVE(chars);
|
||||
|
Loading…
Reference in New Issue
Block a user