-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Directory/File Copy/Move Cancel Support #30
Comments
The implementation here is just a wrapper around
|
@hangy Thanks for the info. I think once cancelable support is available in .NET framework, we can work on adding it to this package. |
Do you think doing it with FileStream.CopyToAsync(....) would work for now? I believe it's not as efficient as doing it with File.Copy(...), but it works. More on the discussion of it's efficiency: https://stackoverflow.com/questions/882686/non-blocking-file-copy-in-c-sharp |
If all you care about is the file content, then you can use But beware that |
Can we get versions of all of the methods with cancellation support (cancellation tokens or something similar)? So that I can cancel a file or directory move/copy in progress?
The text was updated successfully, but these errors were encountered: