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

GeneratePathURL() private static method

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

            return ret;
        }