With the development of mobile Internet technology, more and more applications need to read and write local files, which requires us to perform file operations during the development process. As a cross-platform development framework, uniapp also provides a rich API to operate local files. When operating local files, we often need to determine whether the file exists. So in uniapp, how do we determine whether the local file exists?
In uniapp, we can use the uni.getFileInfo() method to obtain file information to determine whether the file exists. Its definition is as follows:
uni.getFileInfo({ filePath: '', // 必填,临时文件路径,不支持 res: 开头的文件路径。 success: res => {}, // 必填,获取成功的回调函数 fail: () => {}, // 必填,获取失败的回调函数 complete: () => {} // 非必填,API 调用结束的回调函数(调用成功、失败都会执行) })
By calling this method, we can obtain the size, creation time, modification time and other information of the file. If the file does not exist, the fail callback function is triggered. We can perform file operations in the success callback function, such as file upload, download, etc.
Then we can determine whether the local file exists through the following method:
uni.getFileInfo({ filePath: '/storage/emulated/0/test.txt', success: res => { console.log('file exist', res.size); // 输出文件大小 }, fail: err => { console.log('file not exist', err); // 输出错误信息 } });
In the above code, we determine the locally stored /storage/emulated/0/test.txt
Whether the file exists. If the file exists, the file size is output; if it does not exist, an error message is output.
In addition, we can also use the uni.getSavedFileList() method to get a list of all saved files to determine whether the file exists. It is defined as follows:
uni.getSavedFileList({ success: res => {}, // 必填,获取成功的回调函数 fail: () => {}, // 必填,获取失败的回调函数 complete: () => {} // 非必填,API 调用结束的回调函数 })
This method will return a list of all saved files, including file path, file size and other information. We just need to traverse this list to find whether the specified file exists.
To sum up, we can use the uni.getFileInfo() or uni.getSavedFileList() method to determine whether the local file exists. In actual development, we can choose the appropriate method to perform file operations as needed.
The above is the detailed content of How does uniapp determine whether a local file exists?. For more information, please follow other related articles on the PHP Chinese website!

This article details uni-app's local storage APIs (uni.setStorageSync(), uni.getStorageSync(), and their async counterparts), emphasizing best practices like using descriptive keys, limiting data size, and handling JSON parsing. It stresses that lo

This article details workarounds for renaming downloaded files in UniApp, lacking direct API support. Android/iOS require native plugins for post-download renaming, while H5 solutions are limited to suggesting filenames. The process involves tempor

This article addresses file encoding issues in UniApp downloads. It emphasizes the importance of server-side Content-Type headers and using JavaScript's TextDecoder for client-side decoding based on these headers. Solutions for common encoding prob

This article compares Vuex and Pinia for state management in uni-app. It details their features, implementation, and best practices, highlighting Pinia's simplicity versus Vuex's structure. The choice depends on project complexity, with Pinia suita

This article details uni-app's geolocation APIs, focusing on uni.getLocation(). It addresses common pitfalls like incorrect coordinate systems (gcj02 vs. wgs84) and permission issues. Improving location accuracy via averaging readings and handling

This article details making and securing API requests within uni-app using uni.request or Axios. It covers handling JSON responses, best security practices (HTTPS, authentication, input validation), troubleshooting failures (network issues, CORS, s

The article details how to integrate social sharing into uni-app projects using uni.share API, covering setup, configuration, and testing across platforms like WeChat and Weibo.

This article explains uni-app's easycom feature, automating component registration. It details configuration, including autoscan and custom component mapping, highlighting benefits like reduced boilerplate, improved speed, and enhanced readability.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
