**遇到的问题** 我在东八区,但是发现在为自动创建文件夹生成的时间戳和我在的时区并不相符 **建议** 从浏览器获取时区,并生成时间戳 ```js const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone; const folderName = new Date() .toLocaleString("zh-CN", {timeZone: "Asia/Shanghai"}) .replace(/[^\d]/g, "") ``` 或者提供变量,让用户自行选择或者设定时区