當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.ftruncate()用法及代碼示例


操作係統模塊Python中的Windows提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.ftruncate()方法將截斷與文件描述符fd對應的文件,因此該文件最大為字節大小。

用法: os.ftruncate(fd, length)

參數:
fd: 這是將被截斷的文件描述符。
length: 這是要截斷的文件的長度。


返回值:此方法不返回任何值。

示例1:
使用os.ftruncate()截斷文件的方法

# Python program to explain os.ftruncate() method  
        
# importing os module  
import os  
    
# path  
path = 'C:/Users/Rajnish/Desktop/testfile.txt'
  
# Open the file and get 
# the file descriptor associated 
# with it using os.open() method 
fd = os.open(path, os.O_RDWR|os.O_CREAT) 
  
# String to be written 
s = 'GeeksforGeeks'
  
# Convert the string to bytes  
line = str.encode(s) 
  
# Write the bytestring to the file  
# associated with the file  
# descriptor fd  
os.write(fd, line) 
  
# Using os.ftruncate() method 
os.ftruncate(fd, 5) 
  
# Seek the file from beginning 
# using os.lseek() method 
os.lseek(fd, 0, 0) 
  
# Read the file 
s = os.read(fd, 15) 
  
# Print string 
print(s) 
  
# Close the file descriptor  
os.close(fd)
輸出:
b'Geeks'

示例2:
使用os.ftruncate()截斷文件的方法

# Python program to explain os.ftruncate() method  
        
# importing os module  
import os  
    
# path  
path = 'C:/Users/Rajnish/Desktop/testfile.txt'
  
# Open the file and get 
# the file descriptor associated 
# with it using os.open() method 
fd = os.open(path, os.O_RDWR|os.O_CREAT) 
  
# String to be written 
s = 'GeeksforGeeks - Computer Science portal'
  
# Convert the string to bytes  
line = str.encode(s) 
  
# Write the bytestring to the file  
# associated with the file  
# descriptor fd  
os.write(fd, line) 
  
# Using os.ftruncate() method 
os.ftruncate(fd, 10) 
  
# Seek the file from beginning 
# using os.lseek() method 
os.lseek(fd, 0, 0) 
  
# Read the file 
s = os.read(fd, 15) 
  
# Print string 
print(s) 
  
# Close the file descriptor  
os.close(fd)
輸出:
b'GeeksforGe'


相關用法


注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Python | os.ftruncate() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。