Get your own Python server Result Size: 625 x 565
x
 
#Import os Library
import os
#open a file and create a file descriptor
fd = os.open( "test.txt", os.O_RDONLY)
#Get the maximum length of a filename
print (os.fpathconf(fd, 'PC_NAME_MAX'))
#close file
os.close(fd)
255