| commit | 0975f8c70b9a3e490c43dc57a4e616130e3e3b65 | [log] [tgz] |
|---|---|---|
| author | Maxim Dounin <mdounin@mdounin.ru> | Tue Mar 29 09:51:46 2016 +0300 |
| committer | Maxim Dounin <mdounin@mdounin.ru> | Tue Mar 29 09:51:46 2016 +0300 |
| tree | ddc22c3ff087e2ad0b717c16575c243abd609397 | |
| parent | 35062c6dcf50f7372171f0837d8e7f3b3912ffd2 [diff] |
Win32: additional error code NGX_EEXIST_FILE (ticket #910). On Windows there are two possible error codes which correspond to the EEXIST error code: ERROR_FILE_EXISTS used by CreateFile(CREATE_NEW), and ERROR_ALREADY_EXISTS used by CreateDirectory(). MoveFile() seems to use both: ERROR_ALREADY_EXISTS when moving within one filesystem, and ERROR_FILE_EXISTS when copying a file to a different drive.