如何使用javascript完成文件路径名



如果我知道文件路径的一部分,是否可能(以及如何)创建文件路径?例如,我有文件路径名/User/Documents/Italy/Report_123.pdf如何完成路径名,如果我知道有pdf在文件夹意大利包含word Report_这些数字在最后是动态的?

我需要用javascript完成这个任务。提前谢谢。

如果你使用node.js,你可以从该文件夹中获取所有文件,然后迭代结果数组以获得你想要的。

import { readdir } from 'fs/promises';

const result = await readdir('C:/User/Documents/Italy');
console.log(result);

使用这个可能会对你有所帮助

var documentName = "Report_123.pdf";    // Use documentName Variable to use other js functions for example - documentName.split("_").
var path = "../User/Documents/Italy/"+documentName;

相关内容

  • 没有找到相关文章

最新更新