exists method
By passing fileFullPath
, which is the full path of the storage, it checks if the file exists at that location.
Returns true
if the file exists.
ストレージのフルパスであるfileFullPath
を渡すことでその位置にファイルがあるかをチェックします。
ファイルが存在する場合true
を返します。
Implementation
@override
Future<bool> exists(String fileFullPath) async {
return File(fileFullPath).existsSync();
}