Description of Fs.truncatesync method used in Node.js _node.js

Source: Internet
Author: User

Method Description:

Sync version of Truncate (), File content interception operations.

Grammar:

Copy Code code as follows:

Fs.truncatesync (path, Len)

Because this method belongs to the FS module, it is necessary to introduce FS module (VAR fs= require ("FS") before use.

Receive parameters:

Path file paths

Len truncate length, leaving only the characters in the length of the character, and the excess portion will be cleared.

Example:

Copy Code code as follows:

var fs = require (' FS ');
Fs.truncatesync (' 126.txt ', 3);

Source:

Copy Code code as follows:

Fs.truncatesync = function (path, len) {
if (Util.isnumber (path)) {
Legacy
return Fs.ftruncatesync (path, Len);
}
if (util.isundefined (len)) {
len = 0;
}
Allow error to being thrown, but still close FD.
var fd = fs.opensync (path, ' r+ ');
try {
var ret = Fs.ftruncatesync (FD, Len);
finally {
Fs.closesync (FD);
}
return ret;
};

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.