summaryrefslogtreecommitdiffstats
path: root/platform_utils_win32.py
Commit message (Collapse)AuthorAgeFilesLines
* Windows: Add support for creating symlinks as an unprivileged userRenaud Paquay2018-10-031-7/+15
| | | | | | | | | | See https://blogs.windows.com/buildingapps/2016/12/02/symlinks-windows-10/ for announcement of new flag. This change follow the same pattern as what was done in "go": https://github.com/golang/go/pull/24307/files#diff-b87bc12e4da2497308f9ef746086e4f0 Change-Id: If1e99fefdd3f787598e695731019c34b9bfcd1c2
* Implement islink, readlink and realpath using Win32 apiRenaud Paquay2017-08-311-5/+159
| | | | Change-Id: I18452cbb32d24db73601ad10485dbe6bb278731c
* Add support for creating symbolic links on WindowsRenaud Paquay2017-05-291-0/+63
Replace all calls to os.symlink with platform_utils.symlink. The Windows implementation calls into the CreateSymbolicLinkW Win32 API, as os.symlink is not supported. Separate the Win32 API definitions into a separate module platform_utils_win32 for clarity. Change-Id: I0714c598664c2df93383734e609d948692c17ec5