當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript fs.readlinkSync函數代碼示例

本文整理匯總了TypeScript中fs.readlinkSync函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript readlinkSync函數的具體用法?TypeScript readlinkSync怎麽用?TypeScript readlinkSync使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了readlinkSync函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: done

 const onEnd = () => {
    buffered.length.should.equal(1);
    buffered[0].should.equal(expectedFile);
    buffered[0].cwd.should.equal(__dirname, 'cwd should have changed');
    buffered[0].base.should.equal(expectedBase, 'base should have changed');
    buffered[0].path.should.equal(expectedPath, 'path should have changed');
    fs.readlinkSync(expectedPath).should.equal(inputPath);
    fs.lstatSync(expectedPath).isDirectory().should.equal(false);
    fs.statSync(expectedPath).isDirectory().should.equal(true);
    done();
 };
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:11,代碼來源:vinyl-fs-tests.ts

示例2: bufEqual

 const onEnd = () => {
    buffered.length.should.equal(1);
    buffered[0].should.equal(expectedFile);
    buffered[0].cwd.should.equal(__dirname, 'cwd should have changed');
    buffered[0].base.should.equal(expectedBase, 'base should have changed');
    buffered[0].path.should.equal(expectedPath, 'path should have changed');
    fs.existsSync(expectedPath).should.equal(true);
    bufEqual(fs.readFileSync(expectedPath), expectedContents).should.equal(true);
    fs.readlinkSync(expectedPath).should.equal(inputPath);
    done();
 };
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:11,代碼來源:vinyl-fs-tests.ts

示例3: copyDir

function copyDir(src, dest) {
  try{
    mkdir(dest);
    let files = fs.readdirSync(src);
    for(let i = 0; i < files.length; i++) {
      let current = fs.lstatSync(path.join(src, files[i]));
      if(current.isDirectory()) {
        copyDir(path.join(src, files[i]), path.join(dest, files[i]));
      } else if(current.isSymbolicLink()) {
        let symlink = fs.readlinkSync(path.join(src, files[i]));
        fs.symlinkSync(symlink, path.join(dest, files[i]));
      } else {
        copy(path.join(src, files[i]), path.join(dest, files[i]));
      }
    }
  } catch(error){
    console.log(error);
  }
};
開發者ID:Jenselme,項目名稱:tests-ionic2-and-aurelia-framework7,代碼行數:19,代碼來源:update-ux.ts

示例4:

    {
        let s = '123';
        let b: Buffer;
        fs.readlink('/path/to/folder', (err, linkString) => s = linkString);
        fs.readlink('/path/to/folder', undefined, (err, linkString) => s = linkString);
        fs.readlink('/path/to/folder', 'utf8', (err, linkString) => s = linkString);
        fs.readlink('/path/to/folder', 'buffer', (err, linkString) => b = linkString);
        fs.readlink('/path/to/folder', s, (err, linkString) => typeof linkString === 'string' ? s = linkString : b = linkString);
        fs.readlink('/path/to/folder', {}, (err, linkString) => s = linkString);
        fs.readlink('/path/to/folder', { encoding: undefined }, (err, linkString) => s = linkString);
        fs.readlink('/path/to/folder', { encoding: 'utf8' }, (err, linkString) => s = linkString);
        fs.readlink('/path/to/folder', { encoding: 'buffer' }, (err, linkString) => b = linkString);
        fs.readlink('/path/to/folder', { encoding: s }, (err, linkString) => typeof linkString === "string" ? s = linkString : b = linkString);

        s = fs.readlinkSync('/path/to/folder');
        s = fs.readlinkSync('/path/to/folder', undefined);
        s = fs.readlinkSync('/path/to/folder', 'utf8');
        b = fs.readlinkSync('/path/to/folder', 'buffer');
        const v1 = fs.readlinkSync('/path/to/folder', s);
        typeof v1 === "string" ? s = v1 : b = v1;

        s = fs.readlinkSync('/path/to/folder', {});
        s = fs.readlinkSync('/path/to/folder', { encoding: undefined });
        s = fs.readlinkSync('/path/to/folder', { encoding: 'utf8' });
        b = fs.readlinkSync('/path/to/folder', { encoding: 'buffer' });
        const v2 = fs.readlinkSync('/path/to/folder', { encoding: s });
        typeof v2 === "string" ? s = v2 : b = v2;
    }

    {
開發者ID:Lavoaster,項目名稱:DefinitelyTyped,代碼行數:30,代碼來源:node-tests.ts

示例5: readLink

export function readLink(path: string) {
	return readlinkSync(path)
}
開發者ID:tpack,項目名稱:utilskit,代碼行數:3,代碼來源:fs.ts


注:本文中的fs.readlinkSync函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。