/// <summary>
/// Determines whether a path to a file system object such as a file or directory is valid.
/// </summary>
/// <param name="pszPath">A pointer to a null-terminated string of maximum length MAX_PATH that contains the full path of the object to verify.</param>
/// <returns>Returns TRUE if the file exists, or FALSE otherwise. Call GetLastError for extended error information.</returns>
[DllImport("shlwapi.dll", EntryPoint = "PathFileExistsW", SetLastError = true, CharSet = CharSet.Unicode)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool PathFileExists([MarshalAs(UnmanagedType.LPTStr)]string pszPath);
''' <summary>
''' Determines whether a path to a file system object such as a file or directory is valid.
''' </summary>
''' <param name="pszPath">A pointer to a null-terminated string of maximum length MAX_PATH that contains the full path of the object to verify.</param>
''' <returns>Returns TRUE if the file exists, or FALSE otherwise. Call GetLastError for extended error information.</returns>
<DllImport("shlwapi.dll", EntryPoint:="PathFileExistsW", SetLastError:=True, CharSet:=CharSet.Unicode)> _
Public Function PathFileExists(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
Public Declare Function PathFileExists Lib "shlwapi" Alias "PathFileExistsA" _
(ByVal pszPath As String) As Long
None.
C#: bool System.IO.File.Exists(string path)
https://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
Do you know any other? Please contribute it!
None.
Please add some!
Please add some!