Dima Sirotnikov
Dima Sirotnikov
So what you're saying about (1) means that there are actually no file metadata (rename/set date) operations - you download the file, change it on a local copy and then...
Hmmm. If I understand the Dokan API correctly, what you're getting for each file is: ``` CreateFile(filename, .... ); //called on HandleOpen(...) WriteFile(filename, .... ) // x unknown times (depends...
Ah, so shimming indeed seems like the only option. I appreciate the trouble you're going through to implement a file system cache. It's immensely useful. I'd suggest helping out, but...
Hi! Is it reasonable to have a wrapper plugin that would dynamically decide whether to load the Win8.1+ compatible implementation dll or a dummy dll for Windows 7 (which provides...
Perhaps it's possible to list the packages using UWP's `Package Manager` class via [CppWinRT](https://github.com/Microsoft/cppwinrt). It is now [officially part of the SDK](https://blogs.msdn.microsoft.com/vcblog/2017/11/01/cppwinrt-is-now-included-the-windows-sdk/) so this could be a reasonable future-proof dependency....
my python is certainly way weaker than my c++. Suppose I get the c++ working -- If I export a c++ dll as a pyhton module and add a .py...
Well, I'm a bit confused as to what you are looking for. I don't see a steady elegant solution coming from python alone, without a hack that relies on shell...
Ok then I'm lacking a windows dev machine since switching jobs, but I'll try to setup a windows dev machine within a week or so. Out of interest - since...
I'm game to try the python COM integration. Do you plan to support the comtypes library? Or can I include it in my own code?
We've done some work to analyze the issue. The issue result from the fact that `rm -rf` calls `unlinkat` for all subdirectory files, relative to the `/tmp/test/` directory. ). It...