Xuanwo

Results 1650 comments of Xuanwo

There are also special cases in oss that `write_with_if_not_exists` doen't work after versioning enabled.

Hi, @meteorgan, could you create an issue similar to this one: https://github.com/apache/opendal/issues/5677? Also, could you create an example PR to make it easier for our contributors to follow?

Hi, @meteorgan, I used to believe that `write_has_xxx` was a good idea, but after reviewing PRs and using this API in practice, I found it confusing and not particularly useful....

> I reckon these capabilities aren't meant for users, they are more for internal use. We leverage them to improve testing and figure out what the services are capable of....

> I have another question: are capabilities like `xx_with_xx` commonly used by users? I'm guessing no. The only known users are our bindings.

The `stat("/")` function is treated specially because opendal requires the storage backend to ensure that the service is available and that the root is always valid. We implemented this feature...

There is a history behind using `stat("/")` and `stat("path/to/dir/")`. Previously, services like S3 did not support statting a directory; they would always return `Ok` because object storage services lack a...

Hi, @asukaminato0721. It would be great if we could list all the tasks here directly.

The current usage is: ```dart import 'opendal.dart'; void main() async { await RustLib.init(); final File = FileManager.initOp(schemeStr: "fs", map: {"root": "/tmp"}); // drop-in final file = File('file.txt'); var is_exists =...