操作係統模塊Python中的Windows提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.truncate()
方法會截斷與path對應的文件,以便其最大長度為字節。該函數也可以支持文件描述符。
用法: os.truncate(path, length)
參數:
path:此參數是將被截斷的文件的路徑或文件描述符。
length:這是要截斷的文件的長度。
返回值:此方法不返回任何值。
範例1:
使用os.truncate()
使用文件路徑截斷文件的方法
# Python program to explain os.truncate() 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 - A 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.truncate() method
# Using path as parameter
os.truncate(path, 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'
範例2:
使用os.truncate()
使用文件描述符截斷文件的方法
# Python program to explain os.truncate() 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.truncate() method
# Using fd as parameter
os.truncate(fd, 4)
# 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'Geek'
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Python | os.truncate() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。