Click or drag to resize

FormActMainUncachedFileSave Method (FileInfo, MemoryStream, Boolean)

Bypass Windows disk write caching to save a file. If the file exists, it will be deleted first.

Namespace:  Advanced_Combat_Tracker
Assembly:  Advanced Combat Tracker (in Advanced Combat Tracker.exe) Version: 3.7.0.280
Syntax
C#
public bool UncachedFileSave(
	FileInfo DestFile,
	MemoryStream FileData,
	bool Force
)

Parameters

DestFile
Type: System.IOFileInfo
File to save to
FileData
Type: System.IOMemoryStream
Stream of file contents
Force
Type: SystemBoolean
Will write the file even if the same contents already exist

Return Value

Type: Boolean
true if the uncached save succeeded, false if normal saving was used or the file was the same
See Also