gpt4 book ai didi

当我需要将文件名放入变量时,Flutter 如何删除文件扩展名

转载 作者:行者123 更新时间:2023-12-05 01:58:05 28 4
gpt4 key购买 nike

我使用 flutter 路径库中的 p.basename 来获取文件名,但我得到的是扩展名,如何删除扩展名?我还使用 path_provider 库中的 getApplicationDocumentsDerectory 获取路径

File newFile = File(filepath);
String name = p.basename(newFile.path);

这是我用来获取文件名的代码

最佳答案

你只需使用像 basename 这样的 'basenameWithoutExtension' 方法。

enter image description here

File newFile = File(filepath);
String name = p.basename(newFile.path);
String nameWithoutExtension = p.basenameWithoutExtension(newFile.path);

关于当我需要将文件名放入变量时,Flutter 如何删除文件扩展名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68728358/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com