public byte[] GetBytesFromFile(string path)
        {
            try {
                var bytes = File.ReadAllBytes(path);
                return bytes;