28.10.2021 Views

Python Tutorial ( PDFDrive )

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Example

The following example shows the usage of fstatvfs() method.

#!/usr/bin/python

import os, sys

# Open a file

fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )

# Now get the touple

info = os.fstatvfs(fd)

print "File Info :", info

# Now get maximum filename length

print "Maximum filename length :%d" % info.f_namemax:

# Now get free blocks

print "Free blocks :%d" % info.f_bfree

# Close opened file

os.close( fd)

Let us compile and run the above program, this will produce the following result:

File Info : (4096, 4096, 2621440L, 1113266L, 1113266L,

8929602L, 8764252L, 8764252L, 0, 255)

Maximum filename length :255

Free blocks :1113266

os.fsync(fd)

Description

The method fsync() forces write of file with file descriptor fd to disk. If you're starting with a Python file object f,

first do f.flush(), and then do os.fsync(f.fileno()), to ensure that all internal buffers associated with f are written to

disk.

Syntax

Following is the syntax for fsync() method:

os.fsync(fd)

Parameters

• fd -- This is the file descriptor for buffer sync is required.

Return Value

This method does not return any value.

Example

The following example shows the usage of fsync() method.

#!/usr/bin/python

TUTORIALS POINT

Simply Easy Learning

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!