Files

Multiple Choice Quiz System with Lecture and Student Center

This app was developed using C# and the idea was drawn from code school, which gives online tutorials and offers different online courses. -------------------Features----------- Login part Register page Material design Files Exception handling Developer details: Name: Gopolang Kopano Mathole Email: [email protected] Whatsapp: 074 931 0571 website: www.gopolangmathole.com

File Hider Behind Image

This software, as it states, hide file behind images. This technique was used recently many times and in command line format. It is impossible for users to remember commands. So GUI format is provided. This software also allows you answer: How to hide files behind images. Only Source code is provided. You must compile it in visual studio to get binaries. Don't mind I am just following

Records Management System

This Record Management System is designed to manage and provide a convenient arrangement of records, especially those archiving documents inside the Records Office. The Record Section is the communication center where the users stores active and inactive files, record issuance, implementing the policies and procedures of the record management, formulate the policy statement and information

Get All Files under a Directory in VB.NET

Today in VB.NET, I will teach you how to create a program that gets all files under its corresponding directory not all the folders that are inside on it. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

How to Read and Write To/From Files in Python

Introduction: In this tutorial, we are going to be covering handling files in Python. Generic: To read or write from/to a file, we first need to create a stream. To do this we use the Python function 'open' which takes two parameters, the file, and the mode. The file should a file name (including directory location if it is not in the same directory as the current program) as a string, while the mode should also be a string. Don't forget to replace any backslashes in the directory with two backslashes to avoid Python escape character problems.