Click here to Skip to main content
Licence CPOL
First Posted 5 Jul 2010
Views 11,987
Downloads 301
Bookmarked 16 times

A Small C# File Cloner Class

By | 6 Sep 2010 | Article
Introducing a small class that helps you in creating automatic copies of files and clean them up automatically, too

Introduction

This article shows you a small class that you can use in various projects to simplify the following process:

  1. Create a temporary copy of a file.
  2. Perform operations on/with the temporary file.
  3. Delete the temporary copy of the file.

Background

I created the class for a web application project where I read some Microsoft Excel documents into memory, manipulated the Excel documents in memory and finally sent them to the user's web browser.

Usually this task is as easy as doing some File operations and get a Stream object to the file. This works great when the file is not opened in Microsoft Excel. When it is opened, it is exclusively locked by Excel, resulting in exceptions in my code when I try to access the file stream.

What still works is to copy the file.

So I created a class that implements the IDisposable interface, creates a temporary copy of the file in its constructor, and deletes the temporary file again in its destructor or via the IDisposable.Dispose method.

Using the Code

Using the code is really simple. Instead of writing something like:

// ...Do some operations to the file...
myFunctionThatOperatesOnTheFile( @"C:\Some\Path\File.xlsx" );

You write a code like:

using ( var tfc = new ZetaTemporaryFileCloner( @"C:\Some\Path\File.xlsx" ) )
{
    // ...Do some operations to the file...
    myFunctionThatOperatesOnTheFile( tfc.FilePath );
}

Easy, isn't it?

Points of Interest

In this article, I've shown you a really small class which allows for automatic creation and removal of a temporary file. The download contains the complete C# class which you can simply drop into your own projects.

For your questions, comments and feedback (which I love to get!), please use the comments section below at the bottom of this article. Thank you!

History

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Uwe Keim

Chief Technology Officer
Zeta Producer Desktop CMS
Germany Germany

Member

Uwe does programming since 1989 with experiences in Assembler, C++, MFC and lots of web- and database stuff and now uses ASP.NET and C# extensively, too. He is also teached programming to students at the local university.
 
In his free time, he does climbing, running and mountain biking. You can watch him most of the day (and probably night) programming.
 
Some cool, free software from us:
 
Free Test Management Software - Intuitive, competitive, Test Plans. Download now!  
Homepage erstellen - Intuitive, very easy to use. Download now!  
Send large Files online for free by Email
Some random fun stuff in German


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralI like this one too, and also gave it a 5 PinmvpSacha Barber23:37 6 Sep '10  
GeneralRe: I like this one too, and also gave it a 5 PinmvpUwe Keim7:04 7 Sep '10  
GeneralMy vote of 4 PinmemberEric Xue (brokensnow)10:06 6 Sep '10  
GeneralRe: My vote of 4 PinmvpUwe Keim19:06 6 Sep '10  
GeneralNice approach PinmemberSushant Joshi6:47 6 Sep '10  
GeneralRe: Nice approach PinmvpUwe Keim6:48 6 Sep '10  
GeneralGood article PinmemberJeff.Ou23:46 19 Jul '10  
GeneralRe: Good article PinmvpUwe Keim23:53 19 Jul '10  
GeneralVote of 4 PinmemberCharles Cox17:29 5 Jul '10  
GeneralRe: Vote of 4 PinmvpUwe Keim18:30 5 Jul '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 6 Sep 2010
Article Copyright 2010 by Uwe Keim
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid