About 46,800 results
Open links in new tab
  1. FileStream Class (System.IO) | Microsoft Learn

    Use the FileStream class to read from, write to, open, and close files on a file system, and to manipulate other file-related operating …

  2. Basics of FileStream in C# - GeeksforGeeks

    Apr 28, 2025 · To manipulate files using FileStream, you need to create an object of FileStream class. This object has four …

  3. c# - Detect if there are new files created in a folder using ...

    Nov 11, 2015 · I'm trying to know if there are new files created in a given directory. I have next code: ... In CreatedFiles () function, …

  4. File Class (System.IO) | Microsoft Learn - learn.microsoft.com

    The following example demonstrates how to use the File class to check whether a file exists, and depending on the result, either …

  5. C# FileMode Enum - File Handling in C# - ZetCode

    Apr 20, 2025 · The FileMode enum is used with FileStream and other file-related classes to determine how to open or create a file. It …

  6. FileStream: how to check file is ready, not used? [duplicate]

    What you require is not possible. Except if you send a null FileStream as an argument and initialize it in the Check method. By …

  7. C# FileStream - File I/O Operations in C# - ZetCode

    Apr 20, 2025 · Learn how to use the C# FileStream class to perform file I/O operations. This tutorial includes detailed explanations, …

  8. Working with Files and Streams in .NET (Updated for .NET 8)

    Oct 2, 2024 · By leveraging asynchronous file operations, streams, and modern C# features like memory-mapped files, you can …

  9. How to use C# FileStream Class - Net-Informations.Com

    To work with files using the FileStream Class, developers can utilize the FileMode enumeration, which provides various options for …

  10. File Streams | File Handling | Csharp Tutorial

    This tutorial covered the basic operations of creating, writing, reading, appending, and handling exceptions with file streams in C#. …