Monday, May 9, 2022

how to use temporary files in C#

how to use temporary files in C#

    Very Good tricks

  1. A Small C# File Creator Class
  2. Introducing a small class that helps you in creating a temporary file with string/binary data and clean-up the file automatically

  3. A Small C# File Cloner Class
  4. Introducing a small class that helps you in creating automatic copies of files and clean them up automatically, too

  5. Cryptor - Encrypt Files With Rijndael 256 bit
  6. 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

  7. How to use Temporary Files in C#
  8. 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.

  9. A simple technique to take care of temporary files (Tip: Windows won't do it for you)
  10. 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.

  11. Security Tips for Temporary File Usage in Applications
  12. Educate yourself on security best practices for temporary file usage in software applications.

  13. Generate Excel files without using Microsoft Excel
  14. A C# class to create Excel files without requiring Microsoft Excel.

  15. File Resource Management Library (.NET)
  16. A .NET implementation of a file resource management, with complete support for VS_VERSIONINFO version resources.

  17. CPathSplit
  18. CString based path splitter.

  19. A class to make it easy to work with file names
  20. Working with filenames

  21. Code Lean and Mean File DIFF (FIFF) Application
  22. This article presents an application that calculates and displays the changes between two text files.

  23. FastTreeView
  24. TreeView control in which nodes dynamically load themselves while expanding

  25. INI Files
  26. Parse, manage, edit and write INI files while preserving their format. And don't get too exhausted.

  27. C# File Browser
  28. A file browser written in C#, very much like Windows Explorer.

No comments:

Post a Comment