OdessaGUIProject.MainModel.GetPathToSampleVideo C# (CSharp) Method

GetPathToSampleVideo() static private method

static private GetPathToSampleVideo ( ) : string
return string
        internal static string GetPathToSampleVideo()
        {
            var thisexe = new FileInfo(Application.ExecutablePath);
            if (thisexe.DirectoryName != null)
            {
                string clipPath = Path.Combine(thisexe.DirectoryName, "Pro snowboarder Justin Morgan.mov");
                return clipPath;
            }

            return "";
        }