Visual Basic (Declaration) | |
---|---|
Public Function New( _ ByVal filename As String, _ ByVal blockSize As Integer, _ ByVal growthRate As Integer, _ ByVal cacheLimit As Integer, _ ByVal access As FileAccess, _ ByVal share As FileShare, _ ByVal options As FileOptions _ ) |
C# | |
---|---|
public FragmentedFile( string filename, int blockSize, int growthRate, int cacheLimit, FileAccess access, FileShare share, FileOptions options ) |
Parameters
- filename
- The file name that will store the data
- blockSize
- The block size on disk to be used for allocations
- growthRate
- The number of blocks to grow the file by when needed, or zero for on-demand
- cacheLimit
- The number of threads that can simultaneously access the file
- access
- The file access requested
- share
- The file share permissions
- options
- The file options to use when opening the file
Library/Library.Test/TestFragmentedFile.cs
C# | Copy Code |
---|---|
using (TempFile file = new TempFile()) { Guid guid = Guid.NewGuid(); long id; using (FragmentedFile ff = FragmentedFile.CreateNew(file.TempPath, 512)) { using (Stream io = ff.Create(out id)) PrimitiveSerializer.Guid.WriteTo(guid, io); Assert.AreEqual(id, ff.FirstIdentity); } using (FragmentedFile ff = new FragmentedFile(file.TempPath, 512)) { Assert.AreEqual(id, ff.FirstIdentity); using (Stream io = ff.Open(id, FileAccess.Read)) Assert.AreEqual(guid, PrimitiveSerializer.Guid.ReadFrom(io)); } using (FragmentedFile ff = new FragmentedFile(file.TempPath, 512, 10, 10, FileAccess.Read, FileShare.None, FileOptions.None)) { Assert.AreEqual(id, ff.FirstIdentity); using (Stream io = ff.Open(id, FileAccess.Read)) Assert.AreEqual(guid, PrimitiveSerializer.Guid.ReadFrom(io)); AssertThrows<InvalidOperationException>(delegate() { ff.Open(id, FileAccess.Write).Dispose(); }); } } |
VB.NET | Copy Code |
---|---|
Using file As New TempFile() Dim guid As Guid = Guid.NewGuid() Dim id As Long Using ff As FragmentedFile = FragmentedFile.CreateNew(file.TempPath, 512) Using io As Stream = ff.Create(id) PrimitiveSerializer.Guid.WriteTo(guid, io) End Using Assert.AreEqual(id, ff.FirstIdentity) End Using Using ff As New FragmentedFile(file.TempPath, 512) Assert.AreEqual(id, ff.FirstIdentity) Using io As Stream = ff.Open(id, FileAccess.Read) Assert.AreEqual(guid, PrimitiveSerializer.Guid.ReadFrom(io)) End Using End Using Using ff As New FragmentedFile(file.TempPath, 512, 10, 10, FileAccess.Read, FileShare.None, _ FileOptions.None) Assert.AreEqual(id, ff.FirstIdentity) Using io As Stream = ff.Open(id, FileAccess.Read) Assert.AreEqual(guid, PrimitiveSerializer.Guid.ReadFrom(io)) End Using AssertThrows(Of InvalidOperationException)(Function() Do ff.Open(id, FileAccess.Write).Dispose() End Function) End Using End Using |
Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7
Reference
FragmentedFile ClassFragmentedFile Members
Overload List