Shell32PathIsSlow Method

Determines whether a file path is a high-latency network connection.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Shell32.dll", CharSet = CharSet.Auto, BestFitMapping = false, 
	ThrowOnUnmappableChar = true, SetLastError = true)]
public static bool PathIsSlow(
	string file,
	uint attr = 4294967295
)

Parameters

file  String
A pointer to a null-terminated string that contains the fully qualified path of the file.
attr  UInt32  (Optional)
The file attributes, if known; otherwise, pass –1 and this function gets the attributes by calling GetFileAttributes function.

Return Value

Boolean
Returns if the connection is high-latency; otherwise, .

Remarks

See Also