The "Create File" item does not appear in the menu under the Chinese directory
Modify main.js to resolve:
// Original judgment
const showCreateFile = ent.isFolder && ent.uri === location.pathname && HFS.state.props.can_upload
// Change it to the following
const showCreateFile =
ent.isFolder && decodeURIComponent(ent.uri) === decodeURIComponent(location.pathname) && HFS.state.props.can_upload