sql导入mysql遇到错误

C:\Windows\System32>mysql -hlocalhost -uroot -p
Enter password: **********
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 19
Server version: 8.0.31 MySQL Community Server - GPL

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

******mysql> use test01;
Database changed
mysql> source "F:\BookDB.sql";
ERROR:
Failed to open file '"F:\BookDB.sql"', error: 22
mysql>****

使用mysql导入sql文件时,遇到22错误,在网上进行相关查询发现是中英文格式问题,但我没有看到我的中文格式问题
还请各位指点迷津

把引号去掉:
source F:\BookDB.sql;