Resources  
  • OneDrive File Management with Graph API in SPFxSep 11, 2025. Learn how to leverage the Microsoft Graph API within SharePoint Framework (SPFx) to build powerful OneDrive file management solutions. Automate tasks like listing files, creating folders, uploading, downloading, and deleting files directly from your custom SPFx web parts. Enhance user experience and streamline workflows within Microsoft 365 with secure and efficient OneDrive integration using delegated permissions and best practices.
  • Secure File Upload Handling in ASP.NET Core MVCSep 08, 2025. Learn how to implement secure file upload handling in ASP.NET Core MVC applications. This article covers essential security best practices, including limiting file size, restricting file types, using safe filenames, and storing files outside the webroot to prevent direct access.
  • 🔄 Power Automate Desktop: How to Copy the File to another location (PAD)Jun 27, 2025. Learn how to automate file copying in Power Automate Desktop using the “Copy file” action. This article covers single and bulk file transfers, error handling, and practical workflow tips.
  • Run C# File Instantly with .NET 10Jun 05, 2025. Microsoft has introduced a groundbreaking feature in .NET 10 Preview 4, the ability to run C# files directly using dotnet run app.cs.
  • Best Practices for Azure Blob, Table, Queue, File Storage with C#May 11, 2025. Azure Storage provides scalable solutions for unstructured and structured data. It includes Blob, Table, Queue, and File Storage, offering features like tiering, lifecycle management, security, and cost optimization for efficient data handling.
  • How to Handle File Operations in C#Apr 02, 2025. Learn how to perform file operations in C# with this step-by-step guide. This article covers reading and writing text files, handling exceptions, and using object-oriented programming concepts.
  • Efficient File Upload and Download from Network Drive in C# MVCMar 07, 2025. Learn the best way to upload and download files from a network drive or shared storage using an MVC application in C#.
  • How to Encrypt the SQLite DB File using AES Feb 17, 2025. using the AES Algorithm to encrypt the SQLite DB file. Learn how to encrypt an SQLite database file in .NET C# using AES encryption. This guide covers key generation, IV usage, hashing with SHA256, and secure file encryption using CryptoStream and FileStream.
  • How to Enable S3 Versioning and Manage File VersioningFeb 13, 2025. This article covers enabling versioning, uploading files from an EC2 instance, viewing file versions, and restoring or deleting specific versions using AWS CLI.
  • Create a Documents File in Sharepoint Location Using Power AppsFeb 11, 2025. Learn how to create a document file in a SharePoint location using Power Apps. This guide covers step-by-step instructions to automate file creation, integrate Power Apps with SharePoint, and streamline document management.
  • ASP.NET MVC: Download Large File EfficientlyFeb 02, 2025. This article explores efficient ways to handle large file downloads in ASP.NET MVC, covering FileStreamResult, chunked streaming, async streaming, IIS configuration, and Content-Disposition for improved performance and browser compatibility.
  • Loading Nested JSON File Data in Dropdown ASP.NETNov 14, 2024. Learn how to load and bind nested JSON data to a dropdown in ASP.NET, covering both client-side and server-side techniques for dynamic data binding and efficient JSON parsing in web applications.
  • Understanding React File UploadOct 15, 2024. In this article, I am going to discuss how to upload a file using react. This article explains how to enable file uploads in a React app, covering file selection, server communication, error handling, and using external libraries like Axios for HTTP requests.
  • What are Different File Extension in .NETSep 23, 2024. This article explores key file extensions in ASP.NET, including.ASPX for web pages, which combine HTML and server-side code to generate dynamic content, and .CS for C# source files, essential for defining application logic.
  • Reading and Writing Operation on File System in C ProgrammingSep 20, 2024. In C programming, file handling allows reading from and writing to files using functions like fopen(), fclose(), putc(), getc(), fwrite(), and fread(). Files are opened in various modes such as read, write, or append, with support for unformatted and formatted input/output operations.
  • Programming in Practice - File ConceptSep 04, 2024. The external data is recognized as the data we must pull or push from outside of a boundary of the process hosting the computer program. The article addresses selected examples related to steaming data from a program context point of view.
  • Automated Way for PBIX to PBIP File ConversionSep 04, 2024. To automate PBIX to PBIP conversion, install the PowerShell module PBIXtoPBIP_PBITConversion using Install-Module -Name PBIXtoPBIP_PBITConversion. Use PBIXtoPBIP_PBITConversion -PBIXFilePath "<<PBIXFilePath>>" -ConversionFileType "<<ConversionFileType>>" to perform the conversion.
  • Complete File Upload and Download in ASP.NET Core MVCAug 29, 2024. Implement file upload and download functionality in an ASP.NET Core MVC application. This guide covers project setup, model creation, controller logic, view implementation, and security best practices. You'll create a simple app for managing file uploads and downloads, including file validation and storage.
  • Create Azure File Share Using Azure PortalAug 22, 2024. Azure File Share is a cloud-based storage service by Microsoft Azure that enables you to store, access, and share files securely over the internet. It supports both Windows and Linux systems, offers easy integration with on-premises storage, and provides backup and recovery options for seamless data management.
  • JavaScript vs TypeScript File Extensions: .js .jsx .ts .tsxAug 08, 2024. Unlock the mysteries behind JavaScript and TypeScript file extensions with this comprehensive guide. Learn the differences between .js, .jsx, .ts, and .tsx files, and understand how each plays a crucial role in modern web development.
  • How to Upload a File to Amazon S3 with NodeJSAug 06, 2024. Implementing pagination and filtering in an ASP.NET Core 8.0 API with Entity Framework Core (EF Core) is crucial for efficiently managing large datasets. This guide covers setting up the project, creating models and context, and modifying controllers to handle pagination and filtering.
  • Read Excel (XLSX) file in Angular 18Aug 05, 2024. Learn how to read and process Excel (XLSX) files in Angular 18 with this comprehensive guide. Explore methods for integrating Excel file handling into your Angular application, using libraries and tools to parse and extract data efficiently.
  • How to Handling File Uploads in Next.js?Aug 02, 2024. Handling file uploads in Next.js involves creating an API endpoint to receive and process the files and a client-side component to manage file selection and submission. This guide provides a comprehensive approach to implementing file uploads in a Next.js application.
  • Interactive Input and Output in File HandlingJul 24, 2024. File handling is a crucial aspect of any programming language, including Java. It enables developers to interact with the file system, allowing the creation, reading, updating, and deletion of files.
  • AWS Management (1) --- File UpdateJun 17, 2024. This article will describe one Single example of AWS task: File Update.Amazon Web Services (AWS) offers cloud computing platforms on a pay-as-you-go basis. This article outlines the workflow to update a file document in the AWS system, including login and file management steps.
  • Webcam Capture and File Upload with HTML JavaScript jQueryJun 12, 2024. The HTML structure for this interface consists of a video element for the live webcam feed, a canvas for displaying the captured image, and a file input element for uploading images. Additionally, buttons are provided for capturing the photo and triggering the final upload process.
  • Convert an Embedded Resource into an XML File in WPF C#Jun 06, 2024. When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during runtime.
  • Optimize File Monitoring with Custom .Net8.FileSystemWatcher in .NETMay 21, 2024. Discover enhanced file monitoring with Custom .Net8.FileSystemWatcher NuGet Package in .NET 8. Harness advanced features for real-time tracking, event-driven programming, and improved file system event handling. Elevate your file monitoring capabilities with this custom package."
  • Unlocking the Power of Linux File PermissionsMay 06, 2024. In this article, we will Explore the potency of Linux file permissions, ensuring security and control over system resources. Master chmod, user/group management, and access levels for robust security.
  • JQuery Multiple File Upload and RemoveMay 03, 2024. This code segment utilizes jQuery to handle file upload and removal events in a dynamic UI environment. It captures file details upon selection, facilitates removal with associated buttons, and updates the display accordingly.
  • How to Render EJS file in Express JSMay 01, 2024. To render an HTML file in Express.js, you can use the built-in templating engine or serve the static HTML file directly. Here are two common approaches:
  • Upload file to IPFS using PythonApr 25, 2024. Discover the cutting-edge method to upload files using Python and IPFS (InterPlanetary File System), revolutionizing the way data is stored and shared securely across the web. Dive into this step-by-step guide to harness the power of IPFS for your projects.
  • How to use InterPlanetary File System in React?Apr 23, 2024. This article will explore how we can integrate IPFS in React applications. This comprehensive guide explores the integration of IPFS (InterPlanetary File System) with React, demonstrating how to build decentralized web applications with improved performance and security.
  • Azure File Share Snapshot And ImplementationApr 15, 2024. Azure File Share Snapshot provides point-in-time backups for file shares in Azure Storage, enabling data protection and recovery. Snapshots capture the state of files at specific moments, offering peace of mind against accidental deletions or corruptions.
  • Simple Image or File Import Using T-SQL for SQL ServerApr 03, 2024. The article demonstrates importing image files into SQL Server using T-SQL's OPENROWSET, BULK, and SINGLE_BLOB. It covers basic examples and prerequisites, allowing dynamic file paths and names for flexibility.
  • ASP.NET 8 – Multilingual Application with single Resx file - Part 4 - Resource ManagerApr 02, 2024. ASP.NET 8's Part 4 tutorial explores building multilingual applications using a single Resx file and Resource Manager. This feature facilitates easy localization and globalization, enabling developers to efficiently manage culture-specific resources within their web applications.
  • Multilingual Application with single Resx file - Forms Validation StringsApr 01, 2024. Learn how to create multilingual applications using ASP.NET 8 in this third part of our series. Explore efficient techniques for managing form validation strings using a single Resx file, ensuring seamless user experience across different languages.
  • ASP.NET 8 - Multilingual Application with Single Resx File - Part 2 - Alternative ApproachApr 01, 2024. Explore an alternative approach in ASP.NET 8 for building multilingual applications using a single Resx file in Part 2 of this series. Discover how to efficiently manage localization and globalization, leveraging resource files and innovative techniques.
  • Transfer Multiple File Formats Between Blob Containers with Logic AppMar 30, 2024. Moving multiple file format files between Blob storage containers using the logic app. This article demonstrates how to utilize Azure Logic Apps to automate workflows between Blob storage and OneDrive, creating approval-based processes. No code is required.
  • Simplifying File Uploads with .NET Core 7 Minimal APIsMar 21, 2024. Discover how .NET Core 7's Minimal APIs streamline file upload processes, enhancing development efficiency. Simplify backend tasks with minimalistic yet powerful approaches, optimizing file handling in web applications.
  • How to Split VCF File to Multiple ContactsMar 19, 2024. Explore methods to split VCF (vCard) files into multiple contacts. Get the best solutions to easily split vCard files into multiple contacts on Windows and Mac.
  • Restrict Uploaded File Type in ASP.NET CoreMar 14, 2024. In ASP.NET Core MVC, you can restrict the uploaded file types by implementing validation on the server side. Here's a basic example of how you can achieve this.
  • Managing Storage Spaces with File Server Resource Manager (FSRM)Mar 13, 2024. FSRM has key features to provide control over your storage space. I cover topics such as Quota Management and File Screening Management in this article.
  • What is File Size filter in Vue.js?Mar 13, 2024. Vue.js file size filter formats file sizes for display in a user-friendly way. It converts bytes to KB, MB, GB, or TB. Easily implemented globally in Vue components for clear presentation.
  • Save specific Email to Excel File using Azure Logic App Mar 12, 2024. Azure Logic Apps is a cloud-based service that streamlines business processes. This guide details how to automate moving specific emails to Excel in OneDrive seamlessly using Azure Logic App workflows.
  • Restrict Uploaded File Size in ASP.NET CoreMar 11, 2024. In ASP.NET Core, you can restrict the uploaded file size using the RequestSizeLimit attribute in the Program.cs file or by configuring it in the appsettings.json file. Additionally, you can set the maximum file size programmatically in your controller actions.
  • Installing File Server Resource Manager on Windows ServerMar 11, 2024. In this article, we will learn File Server Resource Manager (FSRM) is a role service in Windows Server that allows you to manage and control the data stored on your file servers. FSRM helps you to classify files, set quotas on folders, and create reports monitoring storage usage.
  • How Do I Open an OCR File in PDF?Mar 05, 2024. Explore methods to open OCR files in PDF. Get the best guides to open an OCR file in PDF with easy steps. Open OCR PDF files in C# using the iTextSharp library. Install iTextSharp, write C# code to extract text, and run the code for OCR PDF processing.
  • How to Do Distributed File System (DFS) In ServerMar 04, 2024. In this article, we will learn a distributed File System (DFS) as the name suggests, is a file system that is distributed on multiple file servers or multiple locations.
  • How to Open a PSD File Without PhotoshopMar 02, 2024. Explore methods to open a PSD File without Photoshop. Get the program to open a PDF file without Photoshop using C#.
  • How to Read or View Exchange Database EDB File ProgrammaticallyFeb 28, 2024. Explore methods to Read or View the Exchange Database EDB File Programmatically. Know how to use this Exchange Server Managed API to View or Read Exchange EDB files.
  • How to Import a CSV File in R with Easy StepsFeb 28, 2024. In this article, we'll delve into importing a CSV file in R. We'll explore two user-friendly methods to accomplish this task: leveraging the intuitive Graphical.
  • Vue.js HTTP Requests: Error Handling, Authentication, and File UploadsFeb 28, 2024. Vue.js, with its simplicity and reactivity, is not only a front-end framework but also excels in facilitating communication between the client and server through HTTP requests. In this article, we will explore four advanced examples that go beyond the basics, showcasing the power and flexibility of Vue HTTP requests.
  • How to Create CSV File from Excel Spreadsheet Feb 27, 2024. Explore methods to Create CSV File from Excel Spreadsheet. Get the best solutions to carte or save CSV files from Excel Spreadsheet in easy steps.
  • What Are Single File Components in Vue.jsFeb 22, 2024. Single File Components (SFCs) in Vue.js consolidate templates, scripts, and styles in one file, enhancing organization. The example demonstrates creating and using a TodoItem component for a clear structure and efficient development.
  • Supported File Types for Data Ingestion into KQL Database in FabricFeb 06, 2024. This article is about Understanding the Supported File Types for Data Ingestion into the KQL Database in Fabric Real-time Analytics. Supported file types include JSON, CSV, XML, & Text. Note: XLSX is not supported. See how to ingest & transform data using Data Factory.
  • Registry Configuration for Launching Programs by File ExtensionsJan 03, 2024. Associating a specific program with a particular file type through registry configurations involves defining entries in the Windows Registry.
  • External Data - File and Stream ConceptsJan 03, 2024. The external data is recognized as the data we must pull or push from outside of a boundary of the process hosting the computer program. A very important kind of external data is streaming data. Usually, this data form is managed using file and stream concepts. It is the first part of a series of articles titled Programming in Practice.
  • Upload Text File .txt and .logDec 29, 2023. This Article is used to upload Text .txt/.log file in the Database. How to upload colon-delimited files into a database using ASPX. With a straightforward interface and code, efficiently read, split, and insert data into tables.
  • Remove A File From Git Commit HistoryDec 27, 2023. Git is a powerful version control system that allows developers to track changes in their projects efficiently. However, there are situations where you might need to remove a file from the Git commit history. This could be due to sensitive information, large files, or any other reason.
  • How to Create File Screening Management in FSRMDec 06, 2023. This article guides you through the process of setting up file screening management in File Server Resource Management (FSRM). File screening management allows control over the types of files stored on a file server, limiting specific file extensions.
  • How to Install the File Server Resource Manager (FSRM)Dec 04, 2023. How to Install the File Server Resource Manager (FSRM).
  • Read and Import Data from PDF File using MSFT FabricDec 04, 2023. Read and Import Data from PDF File using MSFT Fabric.
  • Ask Questions to an Audio File using OpenAINov 12, 2023. This article explains about how one can pass an audio file to LLM - OpenAI
  • Writing a Simple C# Files Backup Solution for File ServerNov 04, 2023. An insight and an introduction of building a simple C# files backup program
  • Write XML to File Action in Desktop Flow using Microsoft Power AutomateOct 31, 2023. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate.
  • Asynchronous File I/O in C#Oct 30, 2023. Thisarticle on asynchronous file I/O in C# is well-structured and informative, covering all the essential aspects of the topic. You have effectively introduced the concept of asynchronous programming, highlighted its benefits, and provided detailed explanations with code examples. The sections on reading and writing files asynchronously are particularly well-crafted, enabling a clear understanding of the practical implementation.
  • Read XML From File Action in Desktop Flow using Microsoft Power AutomateOct 30, 2023. Reading this article, you can learn how to Read XML from file Action in Desktop flow using Microsoft Power Automate
  • Optimizing File Security with Windows SandboxOct 26, 2023. Expert Tips for Utilizing Windows Sandbox to Enhance Downloaded File Security provides valuable insights on using Windows Sandbox, a built-in virtualization feature in Windows operating systems, to bolster security when handling downloaded files. The article offers expert guidance and best practices for leveraging this tool effectively. By isolating potentially harmful files in a secure, sandboxed environment, users can safeguard their systems from malware and other threats, making it an essential addition to any security-conscious individual or organization's cybersecurity toolkit. These tips empower users to safely analyze and execute files without risking their primary system's integrity, ultimately enhancing overall cybersecurity in an increasingly digital and interconnected world.
  • Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event TriggerOct 05, 2023. Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event Trigger
  • Compress and Reduce File Size of Images in ASP.NET CoreOct 01, 2023. Compress and Reduce File Size of Images in ASP.NET Core
  • PowerShell File Search AutomationSep 22, 2023. This PowerShell script automates file detail retrieval within a specified folder. It filters files by extension, displaying their name, size, and type, simplifying tasks like listing text files.
  • Update Size of File Column in Dataverse TableSep 17, 2023. This article will walk you through that how we can update the size of already created file type column in Dataverse table.
  • Creating a File Zip Functionality in ASP.NET Core Web APISep 12, 2023. Creating a file zip functionality in an ASP.NET Core Web API involves several steps. In this article, we will go through each step, including setting up the project, creating the API endpoint, and generating a zip file containing multiple files.
  • Implement File Upload in a Blazor Web Assembly Application using .Net 7Aug 22, 2023. In this article, we will discuss how to perform the file upload activity in any Blazor Web Assembly Application.
  • Automating File Uploads to Azure Storage with Azure PipelinesAug 18, 2023. Automate Azure Storage uploads via Azure Pipelines in software development. Streamline processes, reduce manual tasks, and ensure reliable uploads by creating an automated pipeline. Enhance collaboration and data storage efficiency.
  • Web API File Upload and Download MethodsAug 17, 2023. Discover step-by-step instructions and best practices for seamlessly implementing web API file upload and download functionality to optimize data sharing and collaboration, facilitating smooth digital experiences.
  • Adding a Digital Signature to a PDF Using a PFX File And iTextSharp in C#Aug 08, 2023. In this article we learn how to add a digital signature to a PDF Using a PFX file and iTextSharp In C#
  • How To Upload File In Node.js ?Jul 13, 2023. In this article, we learn how to upload file using Nodejs
  • How To Use File Handling In Node.js?Jul 13, 2023. Learn about how to use file handling in NodeJs with the help of example
  • Cryptography actions with File in Desktop flow using Microsoft Power AutomateJun 16, 2023. Reading this article, you can learn how to encrypt or decrypt a file using Encrypt from file with AES action and Decrypt to file with AES action with the Desktop flow in Microsoft Power Automate
  • How to Generate a Standalone Executable File from C# Project in Visual Studio 2022May 29, 2023. In this article, we will explore the process of generating a standalone executable file from a C# project in Visual Studio 2022. A standalone executable file allows you to distribute your application to end users without the need for them to have the .NET Framework or any other dependencies installed on their machines.
  • Read Files Using File Connector in MuleSoftMay 10, 2023. In this article we will learn how to Read Files Using File Connector in MuleSoft.
  • Upload a file in AWS S3 bucket using C#May 08, 2023.
  • Create and Write CSV Files Using File Connector in MuleSoftMay 04, 2023. In this article, you will learn how to create and write csv files using file connector in MuleSoft.
  • How To Implement File Watcher In PythonApr 24, 2023. Python provides several libraries to monitor files and directories on a local file system. A file watcher is a software application that monitors file changes in real-time, allowing users to trigger actions whenever a file is created, modified, or deleted. In this article, we will discuss how to implement a file watcher in Python.
  • Power Automate - Send Notification With File Properties TableApr 07, 2023. In this article we will see how we can read the file properties of all the files in a folder of SharePoint online document library and send these properties in tabular format with custom CSS styling in email notification.
  • How To Add Date Time Tick To File Name Before Upload In Document Library Using Power AutomateApr 07, 2023. In this blog, we will see how to append date time tick in file name using Power Automate.
  • How To Read Excel File In Next JS ApplicationMar 27, 2023. In this article, we learn how to read Excel file in React JS application.
  • How To Upload And Download File To API In Next JS ApplicationMar 27, 2023. In this article, we learn how to create next js application and upload image in Web API using axios.
  • Getting File Path From Appsettings.json In Worker ServiceMar 24, 2023. Getting file path from appsettings.json in Worker Service.
  • Container (3-1), Get Backup File Into ContainerMar 22, 2023. This article will discuss how to get backup file into container.
  • Azure File Share Storage Implementation Using .NET Core 6 Web APIJan 30, 2023. In this article, you will learn about Azure File Share Storage implementation using .NET Core 6 Web API.
  • Upload File Into Azure Blob Storage And Trigger Blob Storage Using Azure FunctionJan 08, 2023. In this article, you will learn how to upload File into Azure Blob Storage and Trigger Blob Storage using Azure Function.
  • Use Of Invoke Workflow File And Arguments In UiPath Dec 22, 2022. Simple explanation of Invoke Workflow File activity and use of Arguments in UiPath
  • PNP PowerShell - Read Excel File And Add Bulk Data Into SharePoint List Dec 22, 2022. In this article, you wil learn how to read Excel File and Add Bulk Data into SharePoint List.
  • Handle Uploading File Scenario Using WebdriverIO And Playwright Automation ToolDec 13, 2022. In this article, you will learn how to handle uploading file scenario using webdriverIO and playwright automation tool.
  • How To Download All File Format With Angular And .Net Core Web APIDec 12, 2022. In this article, you will learn how to download all file format with Angular and .Net Core Web API.
  • Post Multiple File And Data With The Use Of Single Model API Call In .NET Core With AngularDec 07, 2022. In this article, you will learn how to post multiple file and data with the use of single model Api call in .Net Core with Angular Application.
  • How To Delete A File Or Folder In PythonNov 29, 2022. In this article, I'm going to explain how we can delete a file, empty folder or folder with files.