2011-06-15 143 views
3

我想快速創建一個具有指定大小的tempFile,並且內容不重要,我只是希望操作系統給文件留出足夠的空間,以便其他文件不能保存在磁盤中。 我知道一件名爲「SparseFile」的東西,但我不知道如何創建一個。 謝謝。如何在C#中快速創建TempFile?

回答

4

Like FileStream.SetLength?

http://msdn.microsoft.com/en-us/library/system.io.filestream.setlength.aspx

using System; 
using System.IO; 
using System.Text; 

class Test 
{ 

    public static void Main() 
    { 
     string path = @"c:\temp\MyTest.txt"; 

     // Delete the file if it exists. 
     if (File.Exists(path)) 
     { 
      File.Delete(path); 
     } 

     //Create the file. 
     DateTime start = DateTime.Now; 
     using (FileStream fs = File.Create(path)) 
     { 
      fs.SetLength(1024*1024*1024); 
     } 
     TimeSpan elapsed = DateTime.Now - start; 
     Console.WriteLine(@"FileStream SetLength took: {0} to complete", elapsed.ToString()); 
    } 
} 

下面是一個運行示例,展示如何迅速此操作執行:

C:\temp>dir 
Volume in drive C has no label. 
Volume Serial Number is 7448-F891 

Directory of C:\temp 

06/17/2011 08:09 AM <DIR>   . 
06/17/2011 08:09 AM <DIR>   .. 
06/17/2011 08:07 AM    5,120 ConsoleApplication1.exe 
       1 File(s)   5,120 bytes 
       2 Dir(s) 142,110,666,752 bytes free 

C:\temp>ConsoleApplication1.exe 
FileStream SetLength took: 00:00:00.0060006 to complete 

C:\temp>dir 
Volume in drive C has no label. 
Volume Serial Number is 7448-F891 

Directory of C:\temp 

06/17/2011 08:09 AM <DIR>   . 
06/17/2011 08:09 AM <DIR>   .. 
06/17/2011 08:07 AM    5,120 ConsoleApplication1.exe 
06/17/2011 08:09 AM  1,073,741,824 MyTest.txt 
       2 File(s) 1,073,746,944 bytes 
       2 Dir(s) 141,033,644,032 bytes free 
+0

我想在很短的時間內創建一個大文件,此方法使用FileStream將數據寫入文件並需要大量時間 – wbpmrck 2011-06-15 04:46:16

+0

不,它不。我已經更新了這篇文章,並給出了一個時間樣本。 – holtavolt 2011-06-17 13:11:33

3

看看這個:NTFS Sparse Files with C#

+0

謝謝,如果磁盤格式不是NTFS,我該怎麼辦? – wbpmrck 2011-06-15 04:44:55

+3

@wbpmrck - 看,如果你期望好的答案,請提供更多的細節。你期望我和其他人猜測你有什麼系統嗎?你意識到並非所有的文件系統都支持稀疏文件,對吧? – 2011-06-15 05:24:32

1

稀疏文件可能不是你想要的在這裏,稀疏文件中的歸零孔實際上不會被分配到磁盤上,因此不會阻止該驅動器填滿其他數據。

請參閱this question的答案,以便快速創建大文件(其中最好的方法與holtavolt的建議FileStream.SetLength相同)。

+0

確實。您可以輕鬆地在20 GB硬盤上創建十幾個「空白」10 GB稀疏文件 - 這將查找每個磁盤使用情況分析工具的統計信息。 – springy76 2011-09-21 21:35:26