Python time module in Python The time module in python provides us with functionality to work with the time format, accessing current system time, changing representation format of time etc.
Software Engineering Online C Code Compiler using Flask In this article, we have explored how we can develop an online C Programming language compiler using Flask (a Python web framework). It can be extended to support any programming language.
Software Engineering Different ways to unzip a file in Python When working with archived files there are various ways in which you can unzip your file. In this article we will learn how to extract single or multiple files from a zip file, unzip the whole file etc.
Software Engineering zipfile module in Python We have explored zipfile module in Python in depth. It is used for all operations related to ZIP file and used to create such ZIP files.
Software Engineering Creating archive for larger files in Python In this article, you will learn how to use the functionality provided by Python modules to get the size of a file, recursively traversing the directories and creating a directory,creating writing to a file,creating an archive of files.
Software Engineering Delete files that have not been accessed recently using Python In this article, you will learn how to use the functionality provided by python modules to get the last access time of a file, recursively traversing the directories and deleting files.
Software Engineering Shutil module in Python Shutil module in Python offers a range of high level operations and functions to work with files and collections of files. The functionalities provided are copying a file, moving a file, disk usage, directory removal and many more.
Software Engineering OS module (Operating System) in Python In this article, we have explored OS module in Python in depth. It is used for various directory and file operations like changing directory, creating files, get statistics of a file and much more.
Software Engineering Alert, Confirm and Prompt Popup Boxes in JavaScript In JavaScript, there are three types of popup boxes like alert, confirm and prompt which we have explained in detail with complete code examples.
Software Engineering chdir(), fchdir() and getcwd() in C chdir() and fchdir() are functions in C listed in unistd.h header file which is used to change the current working directory through code. This can be verified by getcwd() function.