mirror of
https://github.com/git/git.git
synced 2026-01-19 07:04:49 +00:00
Win32: mingw_unlink: support symlinks to directories
_wunlink() / DeleteFileW() refuses to delete symlinks to directories. If _wunlink() fails with ERROR_ACCESS_DENIED, try _wrmdir() as well. Signed-off-by: Karsten Blees <blees@dcon.de>
This commit is contained in:
committed by
Johannes Schindelin
parent
8a681eeb2b
commit
fdd4fe43ca
@@ -283,6 +283,13 @@ int mingw_unlink(const char *pathname)
|
||||
return 0;
|
||||
if (!is_file_in_use_error(GetLastError()))
|
||||
break;
|
||||
/*
|
||||
* _wunlink() / DeleteFileW() for directory symlinks fails with
|
||||
* ERROR_ACCESS_DENIED (EACCES), so try _wrmdir() as well. This is the
|
||||
* same error we get if a file is in use (already checked above).
|
||||
*/
|
||||
if (!_wrmdir(wpathname))
|
||||
return 0;
|
||||
} while (retry_ask_yes_no(&tries, "Unlink of file '%s' failed. "
|
||||
"Should I try again?", pathname));
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user