access time – POFTUT

What Is mtime In Linux and Find Command?

Linux operating system and related technologies and tools provide modification time of the files, folders, executables etc. mtime is an attribute used by files, directories and different type of files like text, binary etc. In this tutorial, we will learn how to use mtime attribute with Linux find and related commands. Modification Time (mtime) Files … Read more

Python os.path Library and Using exist, isdir, isfile Examples

Python provides os.path module in order to use some file and directory related functions. We can use os.pathin order to check whether a file or directory exists, given path is file or directory, the access time of the directory and path etc. Import os.path Before starting examples we need to import os.path module which provides … Read more

Linux stat Command Tutorial With Examples

Linux stat command used to display files and file system information like permission, size etc. In this tutorial we will look various usage examples. Show File Information All information about a file can be get without providing any parameter. We will only provide the file name. $ stat a.txt As we can see from screenshot … Read more