Click or drag to resize

FileSystemEntryOpenByPath Method

Opens an entry from a path.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static IntPtr OpenByPath(
	string path,
	FileMode mode = FileMode.Open,
	FileAccess access = FileAccess.Read,
	FileShare share = FileShare.ReadWrite|FileShare.Delete,
	bool throwOnError = true
)

Parameters

path
Type: SystemString
The path to open.
mode (Optional)
Type: System.IOFileMode
A constant that determines how to open or create the entry.
access (Optional)
Type: System.IOFileAccess
A constant that determines how the entry can be accessed.
share (Optional)
Type: System.IOFileShare
A constant that determines how the entry will be shared by processes.
throwOnError (Optional)
Type: SystemBoolean
true to throw errors; otherwise false.

Return Value

Type: IntPtr
A handle to the opened entry or IntPtr.Zero.
See Also