Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 942 Bytes

File metadata and controls

41 lines (28 loc) · 942 Bytes

Home

Function name : PathIsNetworkPath

Group: Shell Lightweight Utility APIs -- Path Functions - Library: shlwapi


Determines whether a path string represents a network resource.


Code examples:

Using Path functions from Shell Lightweight Utility APIs (shlapi.dll)

Declaration:

BOOL PathIsNetworkPath(
  LPCTSTR pszPath
);  

FoxPro declaration:

DECLARE INTEGER PathIsNetworkPath IN shlwapi;
	STRING pszPath  

Parameters:

pszPath [in] Pointer to a null-terminated string of maximum length MAX_PATH that contains the path.


Return value:

Returns TRUE if the string represents a network resource, or FALSE otherwise.