当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript react-native-fs.unlink函数代码示例

本文整理汇总了TypeScript中react-native-fs.unlink函数的典型用法代码示例。如果您正苦于以下问题:TypeScript unlink函数的具体用法?TypeScript unlink怎么用?TypeScript unlink使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了unlink函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: test

test('clearAllDownload', () => {
  testSaga(clearAllDownload)
    .next()
    .call(RNFS.readDir, FILES_FOLDER)
    .next([{ path: 'wallace' }])
    .call(Promise.all, [RNFS.unlink('wallace')])
    .next()
    .put({
      type: 'download/tracks/set',
      payload: []
    })
    .next()
    .put(actions.toastAction('success', '所有下载项目都清除成功'))
    .next()
    .isDone()
})
开发者ID:czb128abc,项目名称:gouqi,代码行数:16,代码来源:download.test.ts

示例2:

    console.log(err.message, err.code);
  });

// create a path you want to write to
const path = RNFS.DocumentDirectoryPath + '/test.txt';

// write the file
RNFS.writeFile(path, 'Lorem ipsum dolor sit amet', 'utf8')
  .then(() => {
    console.log('FILE WRITTEN!');
  })
  .catch((err) => {
    console.log(err.message);
  });

RNFS.unlink('path')
  .then(() => {
    console.log('FILE DELETED');
  })
  // `unlink` will throw an error, if the item to unlink does not exist
  .catch((err) => {
    console.log(err.message);
  });

const uploadUrl = 'http://requestb.in/XXXXXXX';  // For testing purposes, go to http://requestb.in/ and create your own link
// create an array of objects of the files you want to upload
const files = [
  {
    name: 'test1',
    filename: 'test1.w4a',
    filepath: RNFS.DocumentDirectoryPath + '/test1.w4a',
开发者ID:Crevil,项目名称:DefinitelyTyped,代码行数:31,代码来源:react-native-fs-tests.ts

示例3:

 .then((fileExists) => {
   if (fileExists) {
     return RNFS.unlink(uri)
   }
 })
开发者ID:crownstone,项目名称:CrownstoneApp,代码行数:5,代码来源:FileUtil.ts

示例4: call

 yield call(Promise.all, downloads.map((d) => RNFS.unlink(d.path)))
开发者ID:czb128abc,项目名称:gouqi,代码行数:1,代码来源:download.ts


注:本文中的react-native-fs.unlink函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。