Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8571493
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:47:37+00:00 2026-06-11T18:47:37+00:00

My main question is: How to do file operations with the user being able

  • 0

My main question is: How to do file operations with the user being able to cancel them in the middle.

I know I can use the Microsoft.VisualBasic.FileIO namespace like: FileSystem.DeleteFile(...) but that only gives me an option for one file. I would like to delete many files together. (And the same goes for copying…)

Note: I need the user to be able to cancel the operation if needed even in the middle of copying a large file, not just between files. I know I can do that with unmanaged code (-CopyFileEx) but I’m looking for a managed way to do that, whether or not it uses the native Windows dialog.

EDIT: I’ve been suggested ‘wrappers’ for unmanaged code and ‘manual’ copying and deleting (in the answers below). Is there an in-built way (like the VisualBasic namespace stuff – but for multiple files) that I’m missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T18:47:38+00:00Added an answer on June 11, 2026 at 6:47 pm

    In terms of copying, you will need to do this manually by copying the file in chunks and each time you process a chunk you’ll check if the user set a cancel flag.

    void CopyStream(Stream in, Stream out) 
    { 
        var buf = new byte[512]; 
    
        int bytesRead; 
        while((bytesRead = in.Read(buf, 0, buf.Length)) > 0) 
        { 
            out.Write(buf, 0, bytesRead); 
            if(cancelled)
            { 
               // Do you cancel routine
               return; 
            } 
        } 
    } 
    

    For delete, your best bet is you process the file delete one at a time and do the same type of process I describe above.

    Advantage of this is that it will work regardless of operating system. It will work regardless of the types of files. It will work regardless of whatever threading you are implementing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My main question is given a feature centroid, how can I draw it in
Main question is what are the implications of allowing the this keyword to be
My main question is : Is there a good practice to serve binary files
I guess my main question is, will this always work as long as I
The title is the main question. The exact scenario (I am 'using namespace std;'):
This was the main question posed by Greg Wilson's bits of evidence presentation. I'm
Here's the main question I guess : Is there a .NET way to get
first of all, my main question: What are some good troubleshooting techniques when you
TLDR; skip to the bottom paragraph for the main question. I'll try to keep
I am using Struts2, Spring 2 and Junit 4.5. My main question is, whether

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.