gpt4 book ai didi

dart - 有没有更好的方法来找出文件或目录是否存在?

转载 作者:行者123 更新时间:2023-12-02 23:38:25 25 4
gpt4 key购买 nike

这似乎有点麻烦

var fileExists = 
new File(path).existsSync() ||
new Directory(path).existsSync() ||
new Link(path).existsSync()

有更短或更好的方法吗?

最佳答案

更短的方法是

import 'dart:io';

FileSystemEntity.typeSync(path) != FileSystemEntityType.notFound

另请参阅 https://github.com/dart-lang/sdk/issues/2883#issuecomment-108317456

关于dart - 有没有更好的方法来找出文件或目录是否存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39075177/

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