摘要:
View Code using System.IO;using System.Runtime.InteropServices; [DllImport("kernel32.dll")]public static extern IntPtr _lopen(string lpPathName, int iReadWrite); [DllImport("kernel32.dll")]public static extern bool CloseHandle(IntPtr hObject); public const int OF_READWRITE = 2;pu 阅读全文