fs.truncateSync()方法用于同步更改文件大小,即增加或减小文件大小。它将路径上的文件长度更改为len个字节。如果len短于文件的当前长度,则文件将被截断为该长度。如果它大于文件长度,则通过附加空字节(x00)来填充它,直到达到len。
用法:
fs.truncateSync( path, len )
参数:该方法接受上述和以下所述的两个参数:
- path:这是一个字符串,Buffer,URL,它表示必须被截断的文件的路径。
- len:它是一个整数,它指定文件的长度,之后将截断文件。它是一个可选参数。默认值为0,这意味着整个文件将被截断。
以下示例说明了Node.js中的fs.truncateSync()方法:
范例1:
// Node.js program to demonstrate the
// fs.truncateSync() method
// Import the filesystem module
const fs = require('fs');
console.log("Contents of file before truncate:")
console.log(fs.readFileSync('example_file.txt', 'utf8'));
fs.truncateSync('example_file.txt', 18);
console.log("Contents of file after truncate:")
console.log(fs.readFileSync('example_file.txt', 'utf8'));
输出:
Contents of file before truncate: This is an example file for the truncateSync() method. Contents of file after truncate: This is an example
范例2:
// Node.js program to demonstrate the
// fs.truncateSync() method
// Import the filesystem module
const fs = require('fs');
console.log("Contents of file before truncate:")
console.log(fs.readFileSync('example_file.txt', 'utf8'));
// Truncate the whole file
fs.truncateSync('example_file.txt');
console.log("Contents of file after truncate:")
console.log(fs.readFileSync('example_file.txt', 'utf8'));
输出:
Contents of file before truncate: This is an example file for the truncateSync() method. Contents of file after truncate:
参考: https://nodejs.org/api/fs.html#fs_fs_truncatesync_path_len
相关用法
- Node.js GM resize()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM quality()用法及代码示例
- Node.js GM raise()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
- Node.js GM thumbnail()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM transparent()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | fs.truncateSync() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。