Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

UrlCreateFromPath (shlwapi)
 
.
Summary
Summary
Converts a Windows file/path to a URL

C# Signature:

    [DllImport("shlwapi.dll", CharSet=CharSet.Auto)]
    static extern int UrlCreateFromPath(
    [In]     string path,
    [Out]    StringBuilder url,
    [In,Out] ref uint urlLength,
    [In]     uint reserved
    [In]     unit reserved
    );

VB Signature:

    Declare Unicode Function UrlCreateFromPath Lib "shlwapi.dll" Alias "UrlCreateFromPathW" _
    (ByVal path As String, _
     ByVal url As System.Text.StringBuilder, _
     ByRef urlLength As System.UInt32, _
     ByVal reserved As Integer _
    ) As Integer

Declare Function UrlCreateFromPath Lib "shlwapi.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

The return string size will be INTERNET_MAX_URL_LENGTH (defined in wininet.h) or smaller.

Returns an HRESULT; S_FALSE indicates that the path specified was already in Url format and was copied unchanged to url.

Tips & Tricks:

Please add some!

Sample Code (C# console):

Sample Code:

    [STAThread]
    static void Main(string[] args)
    {
      Console.Write(@"Enter filename: ");
      string filename = Console.ReadLine();
      Console.WriteLine(UrlFromPath(filename));

      Console.Read();
    }

    private static string UrlFromPath(string filepath)
    {
      uint maxLen=2048+32+3;//see INTERNET_MAX_URL_LENGTH
      StringBuilder url = new StringBuilder((int)maxLen);
      UrlCreateFromPath(filepath,url,ref maxLen,0);
      return url.ToString();
    }

Sample Code (VB winform):

    Const INTERNET_MAX_URL_LENGTH As Integer = 2048 + 32 + 3

    Private Sub urlFromPathButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles urlFromPathButton.Click
      Dim sz As System.UInt32
      Dim sb As System.Text.StringBuilder
      Dim rc As Integer

      sz = Convert.ToUInt32(INTERNET_MAX_URL_LENGTH)
      sb = New System.Text.StringBuilder(INTERNET_MAX_URL_LENGTH)

      rc = UrlCreateFromPath(pathTextbox.Text, sb, sz, 0)

      urlTextbox.Text = sb.ToString()
    End Sub

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions