I cannot open foo.MYI foo.MYD foo.frm db.opt extension files with MySQL 8.0.
I downloaded database folders but I cannot open them in MySQL Community Workbench. I tried lots of ways like create table with parameter ENGINE=MyISAM and copy database folders but I cannot achieve what I want.
The
db.optfile,*.frmfiles, and other metadata files are no longer used, because MySQL 8.0 implements metadata in a different way.https://dev.mysql.com/doc/refman/8.0/en/data-dictionary-file-removal.html
You shouldn't move MyISAM files around as a means of importing data. Use a SQL dump and restore process.