为什么这个P / Invoke签名不起作用?

时间:2012-03-18 22:48:46

标签: c# c++ winapi pinvoke

我试图从WinApi函数编组C#代码.. 但我明白..为什么她不工作!文件路径 - 是正确的,处理。 任何人都可以帮助我吗?

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Linq;
using System.Text;

namespace ChangeFileTime
{

    class Program
    {

        [DllImport("kernel32.dll", SetLastError = true)]
        [return: MarshalAs(UnmanagedType.Bool)]
        public static extern bool SetFileTime(IntPtr hFile, ref long lpCreationTime,
                                                            ref long lpLastAccessTime, 
                                                            ref long lpLastWriteTime);

        [DllImport("kernel32.dll")]
        public static extern IntPtr CreateFile(string lpFilename,
                                              uint dwDesiredAccess,
                                              uint dwShareMode,
                                              IntPtr SecurityAttributes,
                                              uint dwCreationDisposition,
                                              uint dwFlagsAndAttributes,
                                              IntPtr hTemplateFile);


        [DllImport("kernel32.dll")]
        public static extern bool CloseHandle(IntPtr hObject);

        static void Main(string[] args)
        {
            const uint GENERIC_READ = 0x80000000;
            const uint OPEN_EXISTING = 3;
            const uint FILE_SHARE_WRITE = 0x00000002;
            const uint FILE_ATTRIBUTE_NORMAL = 128;

            IntPtr ptr = CreateFile("C:\\file.txt", GENERIC_READ,
                                                    FILE_SHARE_WRITE,
                                                    IntPtr.Zero,
                                                    OPEN_EXISTING,
                                                    FILE_ATTRIBUTE_NORMAL,
                                                    IntPtr.Zero);

            DateTime creation_time = new DateTime(1990, 12, 14);

            long file_time = creation_time.ToFileTime();
            DateTime time = DateTime.FromFileTime(file_time);

            SetFileTime(ptr, ref file_time, ref file_time, ref file_time);
            int a = 20;
        }
    }
}

我认为我弄错了..我尝试编写C ++代码,并且工作正常......但为什么在C#中不工作?

1 个答案:

答案 0 :(得分:3)

来自MSDN

  

必须使用CreateFile函数创建句柄   FILE_WRITE_ATTRIBUTES

这应该有效:

const uint FILE_WRITE_ATTRIBUTES = 0x0100;
IntPtr ptr = CreateFile("C:\\file.txt", FILE_WRITE_ATTRIBUTES, //...