how to use temporary files in C#
- A Small C# File Creator Class
- A Small C# File Cloner Class
- Cryptor - Encrypt Files With Rijndael 256 bit
- How to use Temporary Files in C#
- A simple technique to take care of temporary files (Tip: Windows won't do it for you)
- Security Tips for Temporary File Usage in Applications
- Generate Excel files without using Microsoft Excel
- File Resource Management Library (.NET)
- CPathSplit
- A class to make it easy to work with file names
- Code Lean and Mean File DIFF (FIFF) Application
- FastTreeView
- INI Files
- C# File Browser
Very Good tricks
Introducing a small class that helps you in creating a temporary file with string/binary data and clean-up the file automatically
Introducing a small class that helps you in creating automatic copies of files and clean them up automatically, too
A simple utility for encrypting files using 256 bit Rijndael (AES). Also, adds menu items to Windows Explorer's file context menu for easy access.
More tricks
What exactly is a temporary file? Put simply, a temporary file is a file used by an application for storing temporary data. There is no fixed rule which specifies what this data should be, but generally temporary files (or temp files) are used for storing ‘work data‘. For example Microsoft Office uses temp files to store backups of documents being created or edited. Other applications might use temp files to store large amounts of data which would otherwise occupy too much memory. Basically, it is up to the developer to decide what should be kept within his/her application’s temp files.
This is a nice and simple approach that I came up with in order to delete temporary files even long after I forgot about them.
Educate yourself on security best practices for temporary file usage in software applications.
A C# class to create Excel files without requiring Microsoft Excel.
A .NET implementation of a file resource management, with complete support for VS_VERSIONINFO version resources.
CString based path splitter.
Working with filenames
This article presents an application that calculates and displays the changes between two text files.
TreeView control in which nodes dynamically load themselves while expanding
Parse, manage, edit and write INI files while preserving their format. And don't get too exhausted.
A file browser written in C#, very much like Windows Explorer.
No comments:
Post a Comment