PlaceholderFileTryDehydrate Method (String, Int64, Int64, FileShare) |
IT Hit User File System
Tries to remove file content from user file system.
Namespace:
ITHit.FileSystem.Windows
Assembly:
ITHit.FileSystem.Windows (in ITHit.FileSystem.Windows.dll) Version: 8.3.27213.0
Syntax public static bool TryDehydrate(
string path,
long offset,
long length,
FileShare fileShare = FileShare.Delete
)
Public Shared Function TryDehydrate (
path As String,
offset As Long,
length As Long,
Optional fileShare As FileShare = FileShare.Delete
) As Boolean
public:
static bool TryDehydrate(
String^ path,
long long offset,
long long length,
FileShare fileShare = FileShare::Delete
)
static member TryDehydrate :
path : string *
offset : int64 *
length : int64 *
?fileShare : FileShare
(* Defaults:
let _fileShare = defaultArg fileShare FileShare.Delete
*)
-> bool
Parameters
- path
- Type: SystemString
File system path. - offset
- Type: SystemInt64
Offset in bytes to start removing file content from. - length
- Type: SystemInt64
Lenth of the file content to remove. -1 signifies end of file. - fileShare (Optional)
- Type: System.IOFileShare
The kind of access other users can have to this file.
Return Value
Type:
BooleanSee Also