如何以编程方式创建RAM磁盘?

时间:2012-01-01 09:20:26

标签: windows ram

我不是在寻找一个调用命令行实用程序的代码,这可以解决问题。我真的很想知道用于创建RAM磁盘的API。

修改

动机:我有一个第三方库需要一个目录名,以便以某种方式处理该目录中的文件。我将这些文件压缩在一个存档中。我希望将存档解压缩到RAM磁盘中,并将第三方路径传递到该RAM磁盘上的相应目录。如您所见,内存映射文件对我没用

4 个答案:

答案 0 :(得分:30)

ImDisk是一个RAM磁盘应用程序,它从内存扇区创建一个虚拟驱动器,并且有一个可以从.NET调用的API。

class RamDisk
{
    public const string MountPoint = "X:";

    public void createRamDisk()
    {

        try
        {
            string initializeDisk   = "imdisk -a ";
            string imdiskSize       = "-s 1024M ";
            string mountPoint       = "-m "+ MountPoint + " ";


            ProcessStartInfo procStartInfo  = new ProcessStartInfo();
            procStartInfo.UseShellExecute   = false;
            procStartInfo.CreateNoWindow    = true;
            procStartInfo.FileName          = "cmd";
            procStartInfo.Arguments         = "/C " + initializeDisk + imdiskSize + mountPoint;
            Process.Start(procStartInfo);

            formatRAMDisk();

        }
        catch (Exception objException)
        {
            Console.WriteLine("There was an Error, while trying to create a ramdisk! Do you have imdisk installed?");
            Console.WriteLine(objException);
        }

    }

    /**
     * since the format option with imdisk doesn't seem to work
     * use the fomat X: command via cmd
     * 
     * as I would say in german:
     * "Von hinten durch die Brust ins Auge"
     * **/
    private void formatRAMDisk(){

        string cmdFormatHDD = "format " + MountPoint + "/Q /FS:NTFS";

        SecureString password = new SecureString();
        password.AppendChar('0');
        password.AppendChar('8');
        password.AppendChar('1');
        password.AppendChar('5');

        ProcessStartInfo formatRAMDiskProcess   = new ProcessStartInfo();
        formatRAMDiskProcess.UseShellExecute    = false;
        formatRAMDiskProcess.CreateNoWindow     = true;
        formatRAMDiskProcess.RedirectStandardInput     = true;
        formatRAMDiskProcess.FileName           = "cmd";
        formatRAMDiskProcess.Verb               = "runas";
        formatRAMDiskProcess.UserName           = "Administrator";
        formatRAMDiskProcess.Password           = password;
        formatRAMDiskProcess.Arguments          = "/C " + cmdFormatHDD;
        Process process                         = Process.Start(formatRAMDiskProcess);

        sendCMDInput(process);
    }

    private void sendCMDInput(Process process)
    {
        StreamWriter inputWriter = process.StandardInput;
        inputWriter.WriteLine("J");
        inputWriter.Flush();
        inputWriter.WriteLine("RAMDisk for valueable data");
        inputWriter.Flush();
    }

    public string getMountPoint()
    {
        return MountPoint;
    }
}

答案 1 :(得分:6)

你没有提到语言,我的回答是在c#:

内存映射文件包含虚拟内存中文件的内容。文件和内存空间之间的这种映射使应用程序(包括多个进程)能够通过直接读取和写入内存来修改文件。从.NET Framework版本4开始,您可以使用托管代码访问内存映射文件,方法与本机Windows函数访问内存映射文件的方式相同,如在MSDN Library中管理Win32中的内存映射文件中所述。 / p>

http://msdn.microsoft.com/en-us/library/dd997372.aspx

MemoryMappedFile MemoryMapped = MemoryMappedFile.CreateOrOpen(
       new FileStream(@"C:\temp\Map.mp", FileMode.Create), // Any stream will do it      
       "MyMemMapFile",                                     // Name
       1024 * 1024,                                        // Size in bytes
       MemoryMappedFileAccess.ReadWrite);                  // Access type

//创建地图视图并阅读它:

using (MemoryMappedViewAccessor FileMap = MemoryMapped.CreateViewAccessor())
{
       Container NewContainer = new Container();
       FileMap.Read<Container>(4, out NewContainer);
}

答案 2 :(得分:1)

本身没有创建RAM磁盘的API。您需要编写自己的设备驱动程序,向系统提供新磁盘,并使该设备驱动程序与分配的内存一起使用。

编辑(OP编辑后)

您尝试执行的操作通常是使用“temp”目录完成的,该目录应该驻留在系统中可用的最快磁盘上。因此,已经拥有RAMdisk的系统可能已将其临时环境变量设置为指向RAMdisk上的文件夹,而没有RAMdisk的系统只会降低性能,这是他们的问题。

现在,如果出于某种原因你不能依赖系统上RAMdisk的存在,并且你绝对需要尽可能快的性能,那么我认为没有选择,只能安装第三方(也许可以免费下载,甚至可能开源)RAM磁盘,暂时使用它,然后卸载它。但那非常笨重。

答案 3 :(得分:0)

WinFsp 允许您使用纯c ++或dotNet C#以编程方式定义自己的文件系统。 示例项目是持久存储在OS RAM内存中的文件系统。您还可以查看 Dokany

https://github.com/billziss-gh/winfsp

https://github.com/dokan-dev/dokany