Win32Native.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.IO;
  9. using System.Runtime.InteropServices;
  10. using Microsoft.Win32.SafeHandles;
  11. namespace SMBServer
  12. {
  13. public class Win32Native
  14. {
  15. [DllImport("kernel32.dll", SetLastError = true)]
  16. private static extern bool SetFileTime(SafeFileHandle hFile, ref long lpCreationTime, IntPtr lpLastAccessTime, IntPtr lpLastWriteTime);
  17. [DllImport("kernel32.dll", SetLastError = true)]
  18. private static extern bool SetFileTime(SafeFileHandle hFile, IntPtr lpCreationTime, ref long lpLastAccessTime, IntPtr lpLastWriteTime);
  19. [DllImport("kernel32.dll", SetLastError = true)]
  20. private static extern bool SetFileTime(SafeFileHandle hFile, IntPtr lpCreationTime, IntPtr lpLastAccessTime, ref long lpLastWriteTime);
  21. internal static void SetCreationTime(SafeFileHandle hFile, DateTime creationTime)
  22. {
  23. long fileTime = creationTime.ToFileTime();
  24. bool success = SetFileTime(hFile, ref fileTime, IntPtr.Zero, IntPtr.Zero);
  25. if (!success)
  26. {
  27. uint error = (uint)Marshal.GetLastWin32Error();
  28. throw new IOException("Win32 error: " + error);
  29. }
  30. }
  31. internal static void SetLastAccessTime(SafeFileHandle hFile, DateTime lastAccessTime)
  32. {
  33. long fileTime = lastAccessTime.ToFileTime();
  34. bool success = SetFileTime(hFile, IntPtr.Zero, ref fileTime, IntPtr.Zero);
  35. if (!success)
  36. {
  37. uint error = (uint)Marshal.GetLastWin32Error();
  38. throw new IOException("Win32 error: " + error);
  39. }
  40. }
  41. internal static void SetLastWriteTime(SafeFileHandle hFile, DateTime lastWriteTime)
  42. {
  43. long fileTime = lastWriteTime.ToFileTime();
  44. bool success = SetFileTime(hFile, IntPtr.Zero, IntPtr.Zero, ref fileTime);
  45. if (!success)
  46. {
  47. uint error = (uint)Marshal.GetLastWin32Error();
  48. throw new IOException("Win32 error: " + error);
  49. }
  50. }
  51. }
  52. }