Snippets ( Network )

From AutoIt Wiki
Revision as of 19:53, 1 August 2012 by Chimaera (talk | contribs) (→‎_IsNetWorkPath() ~ Author - JScript)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Please always credit an author in your script if you use their code, Its only polite.

_IsNetworkShare() ~ Author - guinness

; Check if a path is a network drive.

ConsoleWrite( _IsNetworkShare(@ScriptDir) & @CRLF)

Func _IsNetworkShare($sFilePath)
    Return (Not StringMid($sFilePath, 2, 1) = ":")
EndFunc   ;==>_IsNetworkShare

Return To Contents

_WinAPI_PathIsNetworkPath() ~ Author - guinness

ConsoleWrite(_WinAPI_PathIsNetworkPath("C:\") & @CRLF)

Func _WinAPI_PathIsNetworkPath($sFilePath)
    Local $aReturn = DllCall("shlwapi.dll", "int", "PathIsNetworkPathW", "wstr", $sFilePath)
    If @error Then
        Return SetError(1, 0, 0)
    EndIf
    Return $aReturn[0]
EndFunc   ;==>_WinAPI_PathIsNetworkPath

Return To Contents