Python 3 - os.link() Method


Description

The method link() creates a hard link pointing to src named dst. This method is very useful to create a copy of existing file.

Syntax

Following is the syntax for link() method −

os.link(src, dst)

Parameters

  • src − This is the source file path for which hard link would be created.

  • dest − This is the target file path where hard link would be created.

Return Value

This method does not return any value. Available on Unix, Windows.

Example

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

#!/usr/bin/python3
import os, sys

# Open a file
path = "d:\\python3\\foo.txt"
fd = os.open( path, os.O_RDWR|os.O_CREAT )

# Close opened file
os.close( fd )

# Now create another copy of the above file.
dst = "d:\\tmp\\foo.txt"
os.link( path, dst)

print ("Created hard link successfully!!")

Result

When we run the above program, it produces the following result −

Created hard link successfully!!
python_files_io.htm
Advertisements