Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /Interop /Windows /CreateSymbolicLink.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Runtime.InteropServices; | |
| internal static partial class Interop | |
| { | |
| internal static unsafe partial class Windows | |
| { | |
| [] | |
| internal enum SymbolicLinkFlags | |
| { | |
| File = 0, | |
| Directory = 1, | |
| AllowUnprivilegedCreate = 2, | |
| } | |
| [] | |
| [] | |
| internal static partial bool CreateSymbolicLink(string name, string destination, SymbolicLinkFlags symbolicLinkFlags); | |
| } | |
| } | |