ZForge.Motion.Core.AVIClass.ExportToPath C# (CSharp) Method

ExportToPath() public method

public ExportToPath ( string path ) : bool
path string
return bool
        public bool ExportToPath(string path)
        {
            string fname = this.Title.Replace(":", "-") + ".avi";
            return this.ExportToFile(path + @"\" + fname);
        }