OdessaGUIProject.Workers.AdobePremiereExportWorker.GeneratePathURL C# (CSharp) Method

GeneratePathURL() private method

private GeneratePathURL ( string filepath ) : string
filepath string
return string
        private string GeneratePathURL(string filepath)
        {
            string ret = Uri.EscapeUriString(filepath);
            ret = ret.Replace(":", "%3a");
            ret = ret.Replace("%5C", "/");
            ret = "file://localhost/" + ret;

            return ret;
        }