This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed bug in File::deleteFile() where it would fail to delete a symlink if it was pointing to a nonexistent file.
tags/2021-05-28
Timur Doumler
9 years ago
parent
c2bd54aefc
commit
28730a28c8
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_core/native/juce_posix_SharedCode.h
+ 1
- 1
modules/juce_core/native/juce_posix_SharedCode.h
View File
@@ -404,7 +404,7 @@ bool File::setFileTimesInternal (int64 modificationTime, int64 accessTime, int64
bool File::deleteFile() const
{
if (! exists())
if (! exists()
&& ! isSymbolicLink()
)
return true;
if (isDirectory())
Write
Preview
Loading…
Cancel
Save