You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

208 lines
15 KiB

/* Copyright (C) 2008-2016 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using System.Security;
using System.Text;
namespace Alphaleonis.Win32.Filesystem
{
internal static partial class NativeMethods
{
/// <summary>
/// Creates a new directory.
/// <para>If the underlying file system supports security on files and directories,</para>
/// <para>the function applies a specified security descriptor to the new directory.</para>
/// </summary>
/// <remarks>
/// <para>Some file systems, such as the NTFS file system, support compression or encryption for individual files and
/// directories.</para>
/// <para>On volumes formatted for such a file system, a new directory inherits the compression and encryption attributes of its parent
/// directory.</para>
/// <para>An application can obtain a handle to a directory by calling <see cref="CreateFile"/> with the FILE_FLAG_BACKUP_SEMANTICS
/// flag set.</para>
/// <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
/// <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
/// </remarks>
/// <param name="lpPathName">Full pathname of the file.</param>
/// <param name="lpSecurityAttributes">The security attributes.</param>
/// <returns>
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
/// </returns>
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode, EntryPoint = "CreateDirectoryW"), SuppressUnmanagedCodeSecurity]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool CreateDirectory([MarshalAs(UnmanagedType.LPWStr)] string lpPathName, [MarshalAs(UnmanagedType.LPStruct)] Security.NativeMethods.SecurityAttributes lpSecurityAttributes);
/// <summary>
/// Creates a new directory with the attributes of a specified template directory.
/// <para>If the underlying file system supports security on files and directories,</para>
/// <para>the function applies a specified security descriptor to the new directory.</para>
/// <para>The new directory retains the other attributes of the specified template directory.</para>
/// </summary>
/// <remarks>
/// <para>The CreateDirectoryEx function allows you to create directories that inherit stream information from other directories.</para>
/// <para>This function is useful, for example, when you are using Macintosh directories, which have a resource stream</para>
/// <para>that is needed to properly identify directory contents as an attribute.</para>
/// <para>Some file systems, such as the NTFS file system, support compression or encryption for individual files and
/// directories.</para>
/// <para>On volumes formatted for such a file system, a new directory inherits the compression and encryption attributes of its parent
/// directory.</para>
/// <para>You can obtain a handle to a directory by calling the <see cref="CreateFile"/> function with the FILE_FLAG_BACKUP_SEMANTICS
/// flag set.</para>
/// <para>Minimum supported client: Windows XP [desktop apps only]</para>
/// <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
/// </remarks>
/// <param name="lpTemplateDirectory">Pathname of the template directory.</param>
/// <param name="lpPathName">Full pathname of the file.</param>
/// <param name="lpSecurityAttributes">The security attributes.</param>
/// <returns>
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero (0). To get extended error information, call GetLastError.</para>
/// </returns>
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode, EntryPoint = "CreateDirectoryExW"), SuppressUnmanagedCodeSecurity]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool CreateDirectoryEx([MarshalAs(UnmanagedType.LPWStr)] string lpTemplateDirectory, [MarshalAs(UnmanagedType.LPWStr)] string lpPathName, [MarshalAs(UnmanagedType.LPStruct)] Security.NativeMethods.SecurityAttributes lpSecurityAttributes);
/// <summary>
/// Creates a new directory as a transacted operation, with the attributes of a specified template directory.
/// <para>If the underlying file system supports security on files and directories,</para>
/// <para>the function applies a specified security descriptor to the new directory.</para>
/// <para>The new directory retains the other attributes of the specified template directory.</para>
/// </summary>
/// <remarks>
/// <para>The CreateDirectoryTransacted function allows you to create directories that inherit stream information from other
/// directories.</para>
/// <para>This function is useful, for example, when you are using Macintosh directories, which have a resource stream</para>
/// <para>that is needed to properly identify directory contents as an attribute.</para>
/// <para>Some file systems, such as the NTFS file system, support compression or encryption for individual files and
/// directories.</para>
/// <para>On volumes formatted for such a file system, a new directory inherits the compression and encryption attributes of its parent
/// directory.</para>
/// <para>You can obtain a handle to a directory by calling the <see cref="CreateFileTransacted"/> function with the
/// FILE_FLAG_BACKUP_SEMANTICS flag set.</para>
/// <para>Minimum supported client: Windows XP [desktop apps only]</para>
/// <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
/// </remarks>
/// <param name="lpTemplateDirectory">Pathname of the template directory.</param>
/// <param name="lpNewDirectory">Pathname of the new directory.</param>
/// <param name="lpSecurityAttributes">The security attributes.</param>
/// <param name="hTransaction">The transaction.</param>
/// <returns>
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero (0). To get extended error information, call GetLastError.</para>
/// <para>This function fails with ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION if you try to create a</para>
/// <para>child directory with a parent directory that has encryption disabled.</para>
/// </returns>
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode, EntryPoint = "CreateDirectoryTransactedW"), SuppressUnmanagedCodeSecurity]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool CreateDirectoryTransacted([MarshalAs(UnmanagedType.LPWStr)] string lpTemplateDirectory, [MarshalAs(UnmanagedType.LPWStr)] string lpNewDirectory, [MarshalAs(UnmanagedType.LPStruct)] Security.NativeMethods.SecurityAttributes lpSecurityAttributes, SafeHandle hTransaction);
/// <summary>
/// Retrieves the current directory for the current process.
/// </summary>
/// <remarks>
/// <para>The RemoveDirectory function marks a directory for deletion on close.</para>
/// <para>Therefore, the directory is not removed until the last handle to the directory is closed.</para>
/// <para>RemoveDirectory removes a directory junction, even if the contents of the target are not empty;</para>
/// <para>the function removes directory junctions regardless of the state of the target object.</para>
/// <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
/// <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
/// </remarks>
/// <param name="nBufferLength">The length of the buffer for the current directory string, in TCHARs. The buffer length must include room for a terminating null character.</param>
/// <param name="lpBuffer">
/// <para>A pointer to the buffer that receives the current directory string. This null-terminated string specifies the absolute path to the current directory.</para>
/// <para>To determine the required buffer size, set this parameter to NULL and the nBufferLength parameter to 0.</para>
/// </param>
/// <returns>
/// <para>If the function succeeds, the return value specifies the number of characters that are written to the buffer, not including the terminating null character.</para>
/// <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
/// </returns>
[SuppressMessage("Microsoft.Usage", "CA2205:UseManagedEquivalentsOfWin32Api")]
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode, EntryPoint = "GetCurrentDirectoryW"), SuppressUnmanagedCodeSecurity]
[return: MarshalAs(UnmanagedType.U4)]
internal static extern uint GetCurrentDirectory([MarshalAs(UnmanagedType.U4)] uint nBufferLength, StringBuilder lpBuffer);
/// <summary>
/// Deletes an existing empty directory.
/// </summary>
/// <remarks>
/// <para>The RemoveDirectory function marks a directory for deletion on close.</para>
/// <para>Therefore, the directory is not removed until the last handle to the directory is closed.</para>
/// <para>RemoveDirectory removes a directory junction, even if the contents of the target are not empty;</para>
/// <para>the function removes directory junctions regardless of the state of the target object.</para>
/// <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
/// <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
/// </remarks>
/// <param name="lpPathName">Full pathname of the file.</param>
/// <returns>
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
/// </returns>
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode, EntryPoint = "RemoveDirectoryW"), SuppressUnmanagedCodeSecurity]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool RemoveDirectory([MarshalAs(UnmanagedType.LPWStr)] string lpPathName);
/// <summary>
/// Deletes an existing empty directory as a transacted operation.
/// </summary>
/// <remarks>
/// <para>The RemoveDirectoryTransacted function marks a directory for deletion on close.</para>
/// <para>Therefore, the directory is not removed until the last handle to the directory is closed.</para>
/// <para>RemoveDirectory removes a directory junction, even if the contents of the target are not empty;</para>
/// <para>the function removes directory junctions regardless of the state of the target object.</para>
/// <para>Minimum supported client: Windows Vista [desktop apps only]</para>
/// <para>Minimum supported server: Windows Server 2008 [desktop apps only]</para>
/// </remarks>
/// <param name="lpPathName">Full pathname of the file.</param>
/// <param name="hTransaction">The transaction.</param>
/// <returns>
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
/// </returns>
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode, EntryPoint = "RemoveDirectoryTransactedW"), SuppressUnmanagedCodeSecurity]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool RemoveDirectoryTransacted([MarshalAs(UnmanagedType.LPWStr)] string lpPathName, SafeHandle hTransaction);
/// <summary>
/// Changes the current directory for the current process.
/// </summary>
/// <param name="lpPathName">
/// <para>The path to the new current directory. This parameter may specify a relative path or a full path. In either case, the full path of the specified directory is calculated and stored as the current directory.</para>
/// </param>
/// <returns>
/// <para>If the function succeeds, the return value is nonzero.</para>
/// <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
/// </returns>
[SuppressMessage("Microsoft.Usage", "CA2205:UseManagedEquivalentsOfWin32Api")]
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode, EntryPoint = "SetCurrentDirectoryW"), SuppressUnmanagedCodeSecurity]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool SetCurrentDirectory([MarshalAs(UnmanagedType.LPWStr)] string lpPathName);
}
}