|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- /* 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;
- using System.Diagnostics.CodeAnalysis;
- using System.IO;
- using System.Runtime.InteropServices;
- using System.Security;
-
- namespace Alphaleonis.Win32.Filesystem
- {
- public static partial class File
- {
- #region GetAttributes
-
- /// <summary>Gets the <see cref="FileAttributes"/> of the file on the path.</summary>
- /// <param name="path">The path to the file.</param>
- /// <returns>The <see cref="FileAttributes"/> of the file on the path.</returns>
- [SecurityCritical]
- public static FileAttributes GetAttributes(string path)
- {
- return GetAttributesExCore<FileAttributes>(null, path, PathFormat.RelativePath, true);
- }
-
- /// <summary>[AlphaFS] Gets the <see cref="FileAttributes"/> of the file on the path.</summary>
- /// <param name="path">The path to the file.</param>
- /// <param name="pathFormat">Indicates the format of the path parameter(s).</param>
- /// <returns>The <see cref="FileAttributes"/> of the file on the path.</returns>
- [SecurityCritical]
- public static FileAttributes GetAttributes(string path, PathFormat pathFormat)
- {
- return GetAttributesExCore<FileAttributes>(null, path, pathFormat, true);
- }
-
- /// <summary>[AlphaFS] Gets the <see cref="FileAttributes"/> of the file on the path.</summary>
- /// <param name="transaction">The transaction.</param>
- /// <param name="path">The path to the file.</param>
- /// <returns>The <see cref="FileAttributes"/> of the file on the path.</returns>
- [SecurityCritical]
- public static FileAttributes GetAttributesTransacted(KernelTransaction transaction, string path)
- {
- return GetAttributesExCore<FileAttributes>(transaction, path, PathFormat.RelativePath, true);
- }
-
- /// <summary>[AlphaFS] Gets the <see cref="FileAttributes"/> of the file on the path.</summary>
- /// <param name="transaction">The transaction.</param>
- /// <param name="path">The path to the file.</param>
- /// <param name="pathFormat">Indicates the format of the path parameter(s).</param>
- /// <returns>The <see cref="FileAttributes"/> of the file on the path.</returns>
- [SecurityCritical]
- public static FileAttributes GetAttributesTransacted(KernelTransaction transaction, string path, PathFormat pathFormat)
- {
- return GetAttributesExCore<FileAttributes>(transaction, path, pathFormat, true);
- }
-
- #endregion
-
- #region Internal Methods
-
- /// <summary>Gets the <see cref="FileAttributes"/> or <see cref="NativeMethods.WIN32_FILE_ATTRIBUTE_DATA"/> of the specified file or directory.</summary>
- /// <returns>The <see cref="FileAttributes"/> or <see cref="NativeMethods.WIN32_FILE_ATTRIBUTE_DATA"/> of the specified file or directory.</returns>
- /// <exception cref="ArgumentException"/>
- /// <exception cref="NotSupportedException"/>
- /// <typeparam name="T">Generic type parameter.</typeparam>
- /// <param name="transaction">The transaction.</param>
- /// <param name="path">The path to the file or directory.</param>
- /// <param name="pathFormat">Indicates the format of the path parameter(s).</param>
- /// <param name="returnErrorOnNotFound"></param>
- [SuppressMessage("Microsoft.Interoperability", "CA1404:CallGetLastErrorImmediatelyAfterPInvoke", Justification = "Marshal.GetLastWin32Error() is manipulated.")]
- [SecurityCritical]
- internal static T GetAttributesExCore<T>(KernelTransaction transaction, string path, PathFormat pathFormat, bool returnErrorOnNotFound)
- {
- if (pathFormat == PathFormat.RelativePath)
- Path.CheckSupportedPathFormat(path, true, true);
-
- string pathLp = Path.GetExtendedLengthPathCore(transaction, path, pathFormat, GetFullPathOptions.RemoveTrailingDirectorySeparator | GetFullPathOptions.CheckInvalidPathChars);
-
- var data = new NativeMethods.WIN32_FILE_ATTRIBUTE_DATA();
- int dataInitialised = FillAttributeInfoCore(transaction, pathLp, ref data, false, returnErrorOnNotFound);
-
- if (dataInitialised != Win32Errors.ERROR_SUCCESS)
- NativeError.ThrowException(dataInitialised, pathLp);
-
- return (T) (typeof (T) == typeof (FileAttributes) ? (object) data.dwFileAttributes : data);
- }
-
- /// <summary>
- /// Calls NativeMethods.GetFileAttributesEx to retrieve WIN32_FILE_ATTRIBUTE_DATA.
- /// <para>Note that classes should use -1 as the uninitialized state for dataInitialized when relying on this method.</para>
- /// </summary>
- /// <remarks>No path (null, empty string) checking or normalization is performed.</remarks>
- /// <param name="transaction">.</param>
- /// <param name="pathLp">.</param>
- /// <param name="win32AttrData">[in,out].</param>
- /// <param name="tryagain">.</param>
- /// <param name="returnErrorOnNotFound">.</param>
- /// <returns>0 on success, otherwise a Win32 error code.</returns>
- [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes")]
- [SecurityCritical]
- internal static int FillAttributeInfoCore(KernelTransaction transaction, string pathLp, ref NativeMethods.WIN32_FILE_ATTRIBUTE_DATA win32AttrData, bool tryagain, bool returnErrorOnNotFound)
- {
- int dataInitialised = (int)Win32Errors.ERROR_SUCCESS;
-
- #region Try Again
-
- // Someone has a handle to the file open, or other error.
- if (tryagain)
- {
- NativeMethods.WIN32_FIND_DATA findData;
-
- using (new NativeMethods.ChangeErrorMode(NativeMethods.ErrorMode.FailCriticalErrors))
- {
- bool error = false;
-
- SafeFindFileHandle handle = transaction == null || !NativeMethods.IsAtLeastWindowsVista
-
- // FindFirstFileEx() / FindFirstFileTransacted()
- // In the ANSI version of this function, the name is limited to MAX_PATH characters.
- // To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path.
- // 2013-01-13: MSDN confirms LongPath usage.
-
- // A trailing backslash is not allowed.
- ? NativeMethods.FindFirstFileEx(Path.RemoveTrailingDirectorySeparator(pathLp, false), NativeMethods.FindexInfoLevels, out findData, NativeMethods.FINDEX_SEARCH_OPS.SearchNameMatch, IntPtr.Zero, NativeMethods.LargeCache)
- : NativeMethods.FindFirstFileTransacted(Path.RemoveTrailingDirectorySeparator(pathLp, false), NativeMethods.FindexInfoLevels, out findData, NativeMethods.FINDEX_SEARCH_OPS.SearchNameMatch, IntPtr.Zero, NativeMethods.LargeCache, transaction.SafeHandle);
-
- try
- {
- if (handle.IsInvalid)
- {
- error = true;
- dataInitialised = Marshal.GetLastWin32Error();
-
- if (dataInitialised == Win32Errors.ERROR_FILE_NOT_FOUND ||
- dataInitialised == Win32Errors.ERROR_PATH_NOT_FOUND ||
- dataInitialised == Win32Errors.ERROR_NOT_READY) // Floppy device not ready.
- {
- if (!returnErrorOnNotFound)
- {
- // Return default value for backward compatibility
- dataInitialised = (int)Win32Errors.ERROR_SUCCESS;
- win32AttrData.dwFileAttributes = (FileAttributes)(-1);
- }
- }
-
- return dataInitialised;
- }
- }
- finally
- {
- try
- {
- if (handle != null)
- handle.Close();
- }
- catch
- {
- // If we're already returning an error, don't throw another one.
- if (!error)
- NativeError.ThrowException(dataInitialised, pathLp);
- }
- }
- }
-
- // Copy the attribute information.
- win32AttrData = new NativeMethods.WIN32_FILE_ATTRIBUTE_DATA(findData);
- }
-
- #endregion // Try Again
-
- else
- {
- using (new NativeMethods.ChangeErrorMode(NativeMethods.ErrorMode.FailCriticalErrors))
- {
- if (!(transaction == null || !NativeMethods.IsAtLeastWindowsVista
-
- // GetFileAttributesEx() / GetFileAttributesTransacted()
- // In the ANSI version of this function, the name is limited to MAX_PATH characters.
- // To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path.
- // 2013-01-13: MSDN confirms LongPath usage.
-
- ? NativeMethods.GetFileAttributesEx(pathLp, NativeMethods.GetFileExInfoLevels.GetFileExInfoStandard, out win32AttrData)
- : NativeMethods.GetFileAttributesTransacted(pathLp, NativeMethods.GetFileExInfoLevels.GetFileExInfoStandard, out win32AttrData, transaction.SafeHandle)))
- {
- dataInitialised = Marshal.GetLastWin32Error();
-
- if (dataInitialised != Win32Errors.ERROR_FILE_NOT_FOUND &&
- dataInitialised != Win32Errors.ERROR_PATH_NOT_FOUND &&
- dataInitialised != Win32Errors.ERROR_NOT_READY) // Floppy device not ready.
- {
- // In case someone latched onto the file. Take the perf hit only for failure.
- return FillAttributeInfoCore(transaction, pathLp, ref win32AttrData, true, returnErrorOnNotFound);
- }
-
- if (!returnErrorOnNotFound)
- {
- // Return default value for backward compbatibility.
- dataInitialised = (int)Win32Errors.ERROR_SUCCESS;
- win32AttrData.dwFileAttributes = (FileAttributes)(-1);
- }
- }
- }
- }
-
- return dataInitialised;
- }
-
- #endregion // Internal Methods
- }
- }
|