Found 10784 Articles for Python

How to create a filesystem node using Python?

Rajendra Dharmkar
Updated on 17-Jul-2023 15:49:14

581 Views

In the realm of Python programming, a filesystem node holds significant prominence as it encompasses the essence of file and directory representation within the intricate file system. This construct acts as a means to interact with files and directories programmatically. Each node bears multiple attributes like names, sizes, permissions, and timestamps. The widely used Python modules, such as "os" and "pathlib, " serve as the conduits through which one may interact with these entities, the filestystem nodes and even modify them when required. Filesystem nodes can be created, renamed, deleted, and navigated to access their contents. These nodes make ... Read More

Querying SAP database using Python

V Jyothi
Updated on 30-Jul-2019 22:30:20

890 Views

Python is one of the most used object-oriented programming languages which is very easy to code and understand.In order to use Python with SAP, we need to install Python SAP RFC module which is known as PyRFC. One of its available methods is RFC_READ_TABLE which can be called to read data from a table in SAP database.Also, the PyRFC package provides various bindings which can be utilized to make calls either way. We can use to make calls either from ABAP modules to Python modules or the other way round. One can define equivalent SAP data types which are used ... Read More

How to create and use a named pipe in Python?

Rajendra Dharmkar
Updated on 17-Jul-2023 15:38:14

9K+ Views

Consider a pipeline that allows for seamless data flow and communication between various components of a complex system. Named pipes are similar conduits in Python programming, making it easier for programs to communicate with each other and other processes. Named pipes, which are also referred to as FIFOs (First-In, First-Out), are a powerful way to exchange data between processes on the same system or even between systems. In this article, we will take a journey into Python to learn how to create and use named pipes. We'll unwind the step by step process of making a named pipe, writing and ... Read More

How to Compose a Raw Device Number from the Major and Minor Device Numbers?

Rajendra Dharmkar
Updated on 17-Jul-2023 14:40:46

163 Views

In identifying and interacting with hardware devices, device numbers have a significant role in the domain of low-level systems programming. Every device or peripheral that is connected to a computer system is given or assigned a unique pair of numbers called the major and minor device numbers. You have to comprehend how to compose a raw device number from these components and this is essential when interacting with device drivers or working with devices at a low level. In this article, we will set out on a journey to explore the procedure of composing a raw device number in Python. ... Read More

How to get the device major number from a raw device number using Python?

Rajendra Dharmkar
Updated on 20-Jul-2023 13:00:25

223 Views

Have you ever anytime wondered how the complex world of low-level system programming deals with the issue of device identification in Python? One essential item of data is the device major number; this plays a crucial role in identifying different devices in a system. In this article, we will set out on a journey to demystify the process of extracting the device major number from a raw device number using the power of Python. By the end of this article, you'll be equipped with the knowledge to navigate the realm of device identification with confidence. Understanding Device Major Numbers Before ... Read More

How to create softlink of a file using Python?

Rajendra Dharmkar
Updated on 13-Dec-2019 09:56:43

781 Views

The method os.symlink(src, dst) creates a symbolic link dst pointing to src. For example, if you have a file called photo.jpg and want to create a softlink/symbolic link to it called my_photo.jpg, then you could simply use:Example>>> import os >>> os.symlink('photo.jpg', 'my_photo.jpg')Now if you list the files in that directory, you'll get the my_photo.jpg there as well.

How to create hardlink of a file using Python?

Rajendra Dharmkar
Updated on 13-Dec-2019 09:54:33

3K+ Views

The method os.link(src, dst) creates a hard link pointing to src named dst. This method is very useful to create a copy of existing file.ExampleFor example, if you have a file called photo.jpg and want to create a  hard link to it called my_photo.jpg, then you could simply use:>>> import os >>> os.link('photo.jpg', 'my_photo.jpg') Now if you list the files in that directory, you'll get the my_photo

How to force write of file with filedescriptor fd to disk using Python?

Rajendra Dharmkar
Updated on 13-Dec-2019 09:53:06

242 Views

You have to use the fdatasync(fd) function to force write of file with filedescriptor fd to disk. It does not force update of metadata. Also note that this is only available on Unix.A more cross platform solution would be to use fsync(fd) as it force write of file with filedescriptor fd to disk. On Unix, this calls the native fsync() function; on Windows, the MS _commit() function.Exampleimport os, sys # Open a file fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT ) os.write(fd, "This is test") # Now you can use fsync() method. os.fsync(fd) # Now read this file from the beginning os.lseek(fd, ... Read More

How to get a file system information using Python?

Rajendra Dharmkar
Updated on 20-Jul-2023 12:23:56

903 Views

Filesystem information, in Python, is defined as the attributes and metadata linked with a file or directory, such as its name, size, timestamps, permissions, ownership, and type. There are various modules in Python like os and os.path to work with the file system and fetch this information. Obtaining access to filesystem information allows developers to work with files and directories, carry out operations like creation and deletion, and take informed decisions within their code. To fetch file system information using Python, you can utilize the os module; it provides several functions for interacting with the operating system. In particular, the ... Read More

How can I get a file's permission mask using Python?

Rajendra Dharmkar
Updated on 03-Oct-2019 05:57:13

192 Views

To get stat of a file, method stat() from the os module can be used. It performs a stat system call on the given path. For example,import os st = os.stat("file.dat")This function takes the name of a file, and returns a 10-member tuple with the following contents:(mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)The mode variable gives you the information about file permissions. You can get it by st[0]. You can read more about interpreting the tuple here: http://effbot.org/zone/python-fileinfo.htm

Advertisements